home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 8 / Revista CD Expert nº 08 CD1.iso / Utilitarios / Programacao / MS-DOS Interrupt List / inter60c / INTERRUP.L < prev    next >
Text File  |  1999-01-03  |  358KB  |  9,720 lines

  1. Interrupt List, part 12 of 18
  2. Copyright (c) 1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999 Ralf Brown
  3. --------W-2F1700-----------------------------
  4. INT 2F - MS Windows "WINOLDAP" - IDENTIFY WinOldAp VERSION
  5.     AX = 1700h
  6. Return: AX = 1700h if this version of WINOLDAP doesn't support clipboard
  7.     AX <> 1700h
  8.         AL = WINOLDAP major version
  9.         AH = WINOLDAP minor version
  10. Program: WinOldAp (WINOLDAP.MOD) is a Microsoft Windows extension supporting
  11.       "old" (character-mode) application access to Dynamic Data Exchange,
  12.       menus, and the Windows clipboard.
  13. Note:    this installation check DOES NOT follow the format used by other
  14.       software of returning AL=FFh
  15. SeeAlso: AX=1701h,AX=4601h
  16. Index:    installation check;WINOLDAP
  17. --------W-2F1701-----------------------------
  18. INT 2F - MS Windows "WINOLDAP" - OPEN CLIPBOARD
  19.     AX = 1701h
  20. Return: AX = status
  21.         nonzero success
  22.         0000h   clipboard is already open
  23. SeeAlso: AX=1700h,AX=1702h,AX=1703h,AX=1704h,INT 16/AX=CB00h
  24. --------W-2F1702-----------------------------
  25. INT 2F - MS Windows "WINOLDAP" - EMPTY CLIPBOARD
  26.     AX = 1702h
  27. Return: AX = status
  28.         nonzero clipboard has been emptied
  29.         0000h   failure
  30. SeeAlso: AX=1700h,AX=1701h,AX=1703h,AX=1704h,INT 16/AX=CB05h
  31. --------W-2F1703-----------------------------
  32. INT 2F - MS Windows "WINOLDAP" - SET CLIPBOARD DATA
  33.     AX = 1703h
  34.     DX = clipboard format supported by WinOldAp (see #02723)
  35.     ES:BX -> data (see #02724,#02725)
  36.     SI:CX = size of data
  37. Return: AX = status
  38.         nonzero data copied into the Clipboard
  39.         0000h   failure
  40. SeeAlso: AX=1701h,AX=1705h,INT 16/AX=CB04h
  41.  
  42. (Table 02723)
  43. Values for WinOldAp clipboard format:
  44.  01h    text
  45.  02h    bitmap
  46.  03h    metafile picture
  47.  04h    SYLK
  48.  05h    DIF
  49.  06h    TIFF
  50.  07h    OEM text
  51.  08h    DIB bitmap
  52.  80h    special format (used by Windows WRITE, maybe other Windows applets???)
  53.  81h    DSP text
  54.  82h    DSP bitmap
  55.  
  56. Format of Windows Clipboard bitmap:
  57. Offset    Size    Description    (Table 02724)
  58.  00h    WORD    type (0000h)
  59.  02h    WORD    width of bitmap in pixels
  60.  04h    WORD    height of bitmap in pixels
  61.  06h    WORD    bytes per line
  62.  08h    BYTE    number of color planes
  63.  09h    BYTE    number of adjacent color bits in pixel
  64.  0Ah    DWORD    pointer to start of data
  65.  0Eh    WORD    width in 0.1mm units
  66.  10h    WORD    height in 0.1mm units
  67.  12h  N BYTEs    bitmap data
  68.  
  69. Format of Windows metafile picture:
  70. Offset    Size    Description    (Table 02725)
  71.  00h    WORD    mapping mode
  72.  02h    WORD    X extent
  73.  04h    WORD    Y extent
  74.  06h    WORD    picture data
  75. --------W-2F1704-----------------------------
  76. INT 2F - MS Windows "WINOLDAP" - GET CLIPBOARD DATA SIZE
  77.     AX = 1704h
  78.     DX = clipboard format supported by WinOldAp (see #02723)
  79. Return: DX:AX = size of data in bytes, including any headers
  80.         0000h:0000h if no data in this format in the Clipboard
  81. Note:    Windows reportedly rounds up the size of the data to a multiple of 32
  82.       bytes
  83. SeeAlso: AX=1700h,AX=1703h,AX=1705h
  84. --------W-2F1705-----------------------------
  85. INT 2F - MS Windows "WINOLDAP" - GET CLIPBOARD DATA
  86.     AX = 1705h
  87.     DX = clipboard format supported by WinOldAp (see #02723)
  88.     ES:BX -> buffer
  89. Return: AX = status
  90.         nonzero success
  91.         0000h   error, or no data in this format in Clipboard
  92. SeeAlso: AX=1700h,AX=1704h,INT 16/AX=CB03h
  93. --------W-2F1708-----------------------------
  94. INT 2F - MS Windows "WINOLDAP" - CloseClipboard
  95.     AX = 1708h
  96. Return: AX = status
  97.         0000h failure
  98.         nonzero success
  99. --------W-2F1709-----------------------------
  100. INT 2F - MS Windows "WINOLDAP" - COMPACT CLIPBOARD
  101.     AX = 1709h
  102.     SI:CX = desired size in bytes
  103. Return: DX:AX = number of bytes in largest block of free memory
  104. Note:    WinOldAp is responsible for including the size of any headers
  105. --------W-2F170A-----------------------------
  106. INT 2F - MS Windows "WINOLDAP" - GET DEVICE CAPABILITIES
  107.     AX = 170Ah
  108.     DX = GDI information index (see #02726)
  109. Return: AX = integer value of the desired item
  110.           (see #02727,#02728,#02729,#02730,#02731,#02732,#02733)
  111. Note:    This function returns the device-capability bits for the given display
  112.  
  113. (Table 02726)
  114. Values for GDI information index:
  115.  00h    device driver version
  116.  02h    device classification
  117.  04h    width in mm
  118.  06h    height in mm
  119.  08h    width in pixels
  120.  0Ah    height in pixels
  121.  0Ch    bits per pixel
  122.  0Eh    number of bit planes
  123.  10h    number of brushes supported by device
  124.  12h    number of pens supported by device
  125.  14h    number of markers supported by device
  126.  16h    number of fonts supported by device
  127.  18h    number of colors
  128.  1Ah    size required for device descriptor
  129.  1Ch    curve capabilities
  130.  1Eh    line capabilities
  131.  20h    polygon capabilities
  132.  22h    text capabilities
  133.  24h    clipping capabilities
  134.  26h    bitblt capabilities
  135.  28h    X aspect
  136.  2Ah    Y aspect
  137.  2Ch    length of hypotenuse of aspect
  138.  58h    logical pixels per inch of width
  139.  5Ah    logical pixels per inch of height
  140. SeeAlso: #02727,#02728,#02729,#02730,#02731,#02732,#02733
  141.  
  142. (Table 02727)
  143. Values for device classification:
  144.  00h    vector plotter
  145.  01h    raster display
  146.  02h    raster printer
  147.  03h    raster camera
  148.  04h    character-stream, PLP
  149.  05h    Metafile, VDM
  150.  06h    display-file
  151. SeeAlso: #02726,#02728,#02729,#02730,#02731,#02732,#02733
  152.  
  153. Bitfields for curve capabilities:
  154. Bit(s)    Description    (Table 02728)
  155.  0    circles
  156.  1    pie wedges
  157.  2    chord arcs
  158.  3    ellipses
  159.  4    wide lines
  160.  5    styled lines
  161.  6    wide styled lines
  162.  7    interiors
  163. SeeAlso: #02726,#02727,#02729,#02730,#02731,#02732,#02733
  164.  
  165. Bitfields for line capabilities:
  166. Bit(s)    Description    (Table 02729)
  167.  1    polylines
  168.  2    markers
  169.  3    polymarkers
  170.  4    wide lines
  171.  5    styled lines
  172.  6    wide styled lines
  173.  7    interiors
  174. SeeAlso: #02726,#02727,#02728,#02730,#02731,#02732,#02733
  175.  
  176. Bitfields for polygon capabilities:
  177. Bit(s)    Description    (Table 02730)
  178.  0    polygons
  179.  1    rectangles
  180.  2    trapezoids
  181.  3    scanlines
  182.  4    wide borders
  183.  5    styled borders
  184.  6    wide styled borders
  185.  7    interiors
  186. SeeAlso: #02726,#02727,#02728,#02729,#02731,#02732,#02733
  187.  
  188. Bitfields for text capabilities:
  189. Bit(s)    Description    (Table 02731)
  190.  0    output precision character
  191.  1    output precision stroke
  192.  2    clippping precision stroke
  193.  3    90-degree character rotation
  194.  4    arbitrary character rotation
  195.  5    independent X and Y scaling
  196.  6    double-size
  197.  7    integer scaling
  198.  8    continuous scaling
  199.  9    bold
  200.  10    italic
  201.  11    underline
  202.  12    strikeout
  203.  13    raster fonts
  204.  14    vector fonts
  205.  15    reserved
  206. SeeAlso: #02726,#02727,#02728,#02729,#02730,#02732,#02733
  207.  
  208. (Table 02732)
  209. Values for clipping capabilities:
  210.  00h    none
  211.  01h    clipping to rectangles
  212. SeeAlso: #02726,#02727,#02728,#02729,#02730,#02731,#02733
  213.  
  214. Bitfields for raster capabilities:
  215. Bit(s)    Description    (Table 02733)
  216.  0    simple bitBLT
  217.  1    device requires banding support
  218.  2    device requires scaling support
  219.  3    supports >64K bitmap
  220. SeeAlso: #02726,#02727,#02728,#02729,#02730,#02731,#02732
  221. ----------2F18-------------------------------
  222. INT 2F U - MS-Manager
  223.     AH = 18h
  224.     ???
  225. Return: ???
  226. --------l-2F1900-----------------------------
  227. INT 2F U - DOS 4.x only SHELLB.COM - INSTALLATION CHECK
  228.     AX = 1900h
  229. Return: AL = status
  230.         00h not installed
  231.         FFh installed
  232. --------l-2F1901-----------------------------
  233. INT 2F U - DOS 4.x only SHELLB.COM - SHELLC.EXE INTERFACE
  234.     AX = 1901h
  235.     BL = SHELLC type
  236.         00h transient
  237.         01h resident
  238.     DS:DX -> far call entry point for resident SHELLC.EXE
  239. Return: ES:DI -> SHELLC.EXE workspace within SHELLB.COM
  240. Note:    SHELLB.COM and SHELLC.EXE are parts of the DOS 4.x shell
  241. --------l-2F1902-----------------------------
  242. INT 2F U - DOS 4.x only SHELLB.COM - COMMAND.COM INTERFACE
  243.     AX = 1902h
  244.     ES:DI -> ASCIZ full filename of current batch file, with at least the
  245.           final filename element uppercased
  246.     DS:DX -> buffer for results
  247. Return: AL = 00h  failed, either
  248.         (a) final filename element quoted at ES:DI does not match
  249.               identity of shell batch file quoted as parameter of most
  250.               recent call of SHELLB command, or
  251.         (b) no more Program Start Commands available.
  252.     AL= FFh     success, then:
  253.         memory at DS:[DX+1] onwards filled as:
  254.         DX+1:    BYTE    count of bytes of PSC
  255.         DX+2: N BYTEs    Program Start Command text
  256.             BYTE    0Dh terminator
  257. Desc:    COMMAND.COM executes the result of this call in preference to
  258.       reading a command from a batch file.    Thus the batch file does not
  259.       advance in execution for so long as SHELLB provides PSCs from its
  260.       workspace.
  261. Note:    The PSCs are planted in SHELLB workspace by SHELLC, the user
  262.       menu interface.  The final PSC of a sequence is finished with a
  263.       GOTO COMMON, which causes a loop back in the batch file which called
  264.       SHELLC so as to execute SHELLC again.     The check on batch file name
  265.       permits PSCs to CALL nested batch files while PSCs are still stacked
  266.       up for subsequent execution.
  267. --------l-2F1903-----------------------------
  268. INT 2F U - DOS 4.x only SHELLB.COM - COMMAND.COM interface
  269.     AX = 1903h
  270.     ES:DI -> ASCIZ batch file name as for AX=1902h
  271. Return: AL = status
  272.         FFh quoted batch file name matches last SHELLB parameter
  273.         00h it does not
  274. --------l-2F1904-----------------------------
  275. INT 2F U - DOS 4.x only SHELLB.COM - SHELLB transient to TSR intrface
  276.     AX = 1904h
  277. Return: ES:DI -> name of current shell batch file:
  278.         WORD    number of bytes of name following
  279.         BYTEs    (8 max) uppercase name of shell batch file
  280. ----------2F1980-----------------------------
  281. INT 2F U - IBM ROM-DOS v4.0 - INSTALLATION CHECK
  282.     AX = 1980h
  283. Return: AL = FFh if ??? installed/supported
  284. Note:    called at the very beginning of SHELLSTB.COM, which exits if AL is not
  285.       FFh on return
  286. SeeAlso: AX=1981h,AX=1982h
  287. ----------2F1981-----------------------------
  288. INT 2F U - IBM ROM-DOS v4.0 - GET ??? STRING
  289.     AX = 1981h
  290.     DS:DX -> buffer for ???
  291. Return: AL = status
  292.         FFh if successful
  293.         DS:DX buffer filled (refer to note below)
  294.         81h on error
  295. Note:    the first byte of the buffer is unchanged; depending on a byte in
  296.       IBMBIO.COM, the remainder of the buffer is filled with either
  297.       "C:\ROMSHELL.COM",0Dh or xxh,xxh,0Fh,"C:\ROMSHELL.COM",0Dh
  298. SeeAlso: AX=1980h,AX=1982h
  299. ----------2F1982-----------------------------
  300. INT 2F U - IBM ROM-DOS v4.0 - GET ??? TABLE
  301.     AX = 1982h
  302. Return: AL = FFh if supported
  303.         ES:DI -> ??? table (see #02734)
  304. Note:    called by ROMSHELL.COM
  305. SeeAlso: AX=1980h,AX=1981h
  306.  
  307. Format of ROM-DOS v4.0 ??? table:
  308. Offset    Size    Description    (Table 02734)
  309.  00h    BYTE    ??? (00h)
  310.  01h    BYTE    ??? (41h) (ROMSHELL.COM checks if =00h)
  311.  02h    BYTE    ??? (00h) (ROMSHELL.COM checks if =01h)
  312.  03h    WORD    ??? (0001h) (ROMSHELL.COM checks if =0001h)
  313.  05h    BYTE    ??? (00h)
  314.  06h    WORD    ??? (04D5h)
  315. --------V-2F1A00-----------------------------
  316. INT 2F - DOS 4.0+ ANSI.SYS - INSTALLATION CHECK
  317.     AX = 1A00h
  318. Return: AL = FFh if installed
  319. Notes:    AVATAR.SYS also responds to this call
  320.     documented for DOS 5+, but undocumented for DOS 4.x
  321. --------V-2F1A00BX414E-----------------------
  322. INT 2F - ANSIPLUS.SYS v2.00+ - INSTALLATION CHECK
  323.     AX = 1A00h
  324.     BX = 414Eh ('AN')
  325.     CX = 5349h ('SI')
  326.     DX = 2B2Bh ('++')
  327. Return: AL = FFh if installed
  328.         CF clear
  329.         ES:BX -> INT 29 entry point
  330.         CX = ANSIPLUS BCD version number (v3.10+, CH=major, CL=minor)
  331.         DL = capabilities (v4.00+)
  332.         00h full capability driver
  333.         01h reduced capability driver
  334.         2Bh full capability driver (before v4.00)
  335. Program: ANSIPLUS.SYS is a CON device driver by Kristofer Sweger which
  336.       replaces the normal ANSI.SYS with a more powerful version having
  337.       many additional features
  338. Notes:    ANSIPLUS also identifies itself as ANSI.SYS if BX,CX, or DX differ
  339.       from the magic values above
  340.     an additional installation check is to test for the signature
  341.       "ANSIPLUS" 12 bytes before the INT 29 entry point; the version
  342.       number is also available as a four-character ASCII string (e.g.
  343.       "4.00") four bytes before the entry point
  344. SeeAlso: AX=1AA5h,AX=1AA6h,AX=1AA7h,AX=1AA8h,AX=1AA9h,AX=1AAAh,AX=D44Fh
  345. --------V-2F1A00BX4156-----------------------
  346. INT 2F - AVATAR.SYS - INSTALLATION CHECK
  347.     AX = 1A00h
  348.     BX = 4156h ('AV')
  349.     CX = 4154h ('AT')
  350.     DX = 4152h ('AR')
  351. Return: AL = FFh if installed
  352.         CF clear
  353.         BX = AVATAR protocol level supported
  354.         CX = driver type
  355.         0000h AVATAR.SYS
  356.         4456h DVAVATAR.COM inside DESQview window
  357.         DX = 0016h
  358. Program: AVATAR.SYS is a CON replacement by George Adam Stanislav which
  359.       interprets AVATAR command codes in the same way that ANSI interprets
  360.       ANSI command codes
  361. Notes:    AVATAR also identifies itself as ANSI.SYS if BX, CX, or DX differ from
  362.       the magic values
  363. SeeAlso: AX=1A21h,AX=1A3Ch,AX=1A3Fh,AX=1A52h,AX=1A72h,AX=1A7Dh,AX=1AADh"AVATAR"
  364. --------V-2F1A01-----------------------------
  365. INT 2F U - DOS 4.0+ ANSI.SYS internal - GET/SET DISPLAY INFORMATION
  366.     AX = 1A01h
  367.     CL = function
  368.         7Fh for GET
  369.         5Fh for SET
  370.     DS:DX -> parm block as for INT 21,AX=440Ch,CX=037Fh/035Fh respectively
  371. Return: CF clear if successful
  372.         AX destroyed
  373.     CF set on error
  374.         AX = error code (many non-standard)
  375. Note:    presumably this is the DOS IOCTL interface to ANSI.SYS
  376. SeeAlso: AX=1A02h,INT 21/AX=440Ch
  377. --------V-2F1A02-----------------------------
  378. INT 2F U - DOS 4.0+ ANSI.SYS internal - MISCELLANEOUS REQUESTS
  379.     AX = 1A02h
  380.     DS:DX -> parameter block (see #02735)
  381. Return: CF clear if successful
  382.     CF set on error
  383.         AX = error code
  384. Note:    DOS 5+ chains to previous handler if AL > 02h on call
  385. SeeAlso: AX=1A01h
  386.  
  387. Format of ANSI.SYS parameter block:
  388. Offset    Size    Description    (Table 02735)
  389.  00h    BYTE    subfunction
  390.         00h set/reset interlock
  391.         01h get /L flag
  392.  01h    BYTE    interlock state
  393.         00h=reset, 01h=set
  394.           This interlock prevents some of the ANSI.SYS post-processing
  395.           in its hook onto INT 10, AH=00h mode set
  396.  02h    BYTE    (returned)
  397.         00h if /L not in effect
  398.         01h if /L in effect
  399. --------V-2F1A21-----------------------------
  400. INT 2F - AVATAR.SYS - SET DRIVER STATE
  401.     AX = 1A21h (AL='!')
  402.     DS:SI -> command string with one or more state characters (see #02736)
  403.     CX = length of command string
  404. Return: CF set on error (invalid subfunction)
  405.     CF clear if successful
  406. Note:    the characters in the state string are interpreted left to right, and
  407.       need not be in any particular order
  408. SeeAlso: AX=1A00h/BX=4156h,AX=1A3Fh
  409.  
  410. (Table 02736)
  411. Values for AVATAR.SYS state characters:
  412.  'a'    activate driver
  413.  'd'    disable driver
  414.  'f'    use fast screen output
  415.  'g'    always convert gray keys (+ and -) to function keys
  416.  'G'    never convert gray keys
  417.  'l'    convert gray keys only when ScrollLock active
  418.  's'    use slow screen output
  419.  't'    Tandy 1000 keyboard (not yet implemented)
  420. --------V-2F1A3C-----------------------------
  421. INT 2F U - AVATAR.SYS v0.11 - ???
  422.     AX = 1A3Ch
  423.     ???
  424. Return: CX = 0000h
  425. SeeAlso: AX=1A00h/BX=4156h,AX=1A21h,AX=1A3Eh
  426. --------V-2F1A3E-----------------------------
  427. INT 2F U - AVATAR.SYS v0.11 - ???
  428.     AX = 1A3Eh
  429.     CL = ???
  430.     CH = ???
  431.     DL = ???
  432.     DH = ???
  433. Return: CL = ???
  434.     CH = ???
  435.     DL = ???
  436.     DH = ???
  437. SeeAlso: AX=1A3Ch,AX=1A3Fh
  438. --------V-2F1A3F-----------------------------
  439. INT 2F - AVATAR.SYS - QUERY DRIVER STATE
  440.     AX = 1A3Fh (AL='?')
  441.     ES:DI -> buffer
  442.     CX = length of buffer in bytes
  443. Return: CF clear
  444.     CX = actual size of returned info
  445. Note:    the returned information consists of multiple letters whose meanings
  446.       are described under AX=1A21h
  447. SeeAlso: AX=1A00h/BX=4156h,AX=1A21h,AX=1A44h
  448. --------S-2F1A42BX4156-----------------------
  449. INT 2F - AVATAR Serial Dispatcher - INSTALL IRQ3 HANDLER
  450.     AX = 1A42h
  451.     BX = 4156h ('AV')
  452.     ES:DI -> FAR handler for serial port using IRQ3
  453.     DS = data segment needed by handler
  454. Return: AX = status/return value
  455.         0000h if no more room
  456.         1A42h if ASD not installed
  457.         else handle to use when uninstalling
  458. Notes:    the handler need not save/restore registers or signal EOI to the
  459.       interrupt controller
  460.     the handler should return AX=0000h if the interrupt was meant for it,
  461.       and either leave AX unchanged or return a non-zero value otherwise
  462.     the most recently installed handler will be called first, continuing
  463.       to earlier handlers until one returns AX=0000h
  464. SeeAlso: AX=1A43h,AX=1A62h
  465. --------S-2F1A43BX4156-----------------------
  466. INT 2F - AVATAR Serial Dispatcher - INSTALL IRQ4 HANDLER
  467.     AX = 1A43h
  468.     BX = 4156h ('AV')
  469.     ES:DI -> FAR handler for serial port using IRQ4
  470.     DS = data segment needed by handler
  471. Return: AX = status/return value
  472.         0000h if no more room
  473.         1A43h if ASD not installed
  474.         else handle to use when uninstalling
  475. Notes:    (see AX=1A42h)
  476. SeeAlso: AX=1A42h,AX=1A63h
  477. --------V-2F1A44BX4156-----------------------
  478. INT 2F - AVATAR.SYS v0.11+ - GET DATA SEGMENT
  479.     AX = 1A44h
  480.     BX = 4156h ('AV')
  481. Return: AX = 0000h
  482.     DS = data segment
  483.     CX = size of data segment
  484. Note:    AVATAR.SYS calls this function whenever it is invoked.    If each
  485.       process under a multitasker hooks this function and provides a
  486.       separate data segment, AVATAR.SYS becomes fully reentrant.
  487. SeeAlso: AX=1A21h,AX=1A3Fh,AX=1A52h
  488. --------V-2F1A52-----------------------------
  489. INT 2F U - AVATAR.SYS v0.11 - GET ???
  490.     AX = 1A52h
  491.     CX = size of buffer
  492.     ES:DI -> buffer
  493. Return: ??? copied into user buffer
  494. Note:    the maximum size of the data which may be copied is returned by
  495.       AX=1A72h
  496. SeeAlso: AX=1A53h,AX=1A72h
  497. --------V-2F1A53-----------------------------
  498. INT 2F U - AVATAR.SYS v0.11 - ???
  499.     AX = 1A53h
  500.     CL = ??? (00h-05h)
  501.     ???
  502. Return: ???
  503. SeeAlso: AX=1A00h/BX=4156h,AX=1A52h,AX=1A72h
  504. --------S-2F1A62BX4156-----------------------
  505. INT 2F - AVATAR Serial Dispatcher - UNINSTALL IRQ3 HANDLER
  506.     AX = 1A62h
  507.     BX = 4156h ('AV')
  508.     CX = handle for IRQ routine returned by AX=1A42h
  509. SeeAlso: AX=1A42h,AX=1A63h
  510. --------S-2F1A63BX4156-----------------------
  511. INT 2F - AVATAR Serial Dispatcher - UNINSTALL IRQ4 HANDLER
  512.     AX = 1A63h
  513.     BX = 4156h ('AV')
  514.     CX = handle for IRQ routine returned by AX=1A43h
  515. SeeAlso: AX=1A43h,AX=1A62h
  516. --------V-2F1A72-----------------------------
  517. INT 2F U - AVATAR.SYS v0.11 - GET ??? SIZE
  518.     AX = 1A72h
  519. Return: CX = maximum size of ???
  520. SeeAlso: AX=1A00h/BX=4156h,AX=1A52h,AX=1A7Bh,AX=1AADh"AVATAR"
  521. --------V-2F1A7B-----------------------------
  522. INT 2F U - AVATAR.SYS v0.11 - ???
  523.     AX = 1A7Bh
  524. Return: AX = 0000h
  525.     CX = 0000h
  526. SeeAlso: AX=1A00h/BX=4156h,AX=1A72h,AX=1A7Dh
  527. --------V-2F1A7D-----------------------------
  528. INT 2F U - AVATAR.SYS v0.11 - ???
  529.     AX = 1A7Dh
  530. Return: AX = ???
  531. SeeAlso: AX=1A00h/BX=4156h,AX=1A7Bh
  532. --------V-2F1AA3-----------------------------
  533. INT 2F - ANSIPLUS v4.03+ - GET/SET ANSIPLUS INTERNAL VARIABLES
  534.     AX = 1AA3h
  535.     BH = function
  536.         00h get current/default colors
  537.         Return: CH = default colors
  538.             CL = current colors
  539.         01h set current/default colors
  540.         CH = default colors (00h = leave unchanged)
  541.         CL = current colors
  542.         02h get current subscreen region
  543.         Return: BH,BL = true screen rows,columns
  544.             CH,CL = top left row,column of region
  545.             DH,DL = bottom right row,column of region
  546.         03h set subscreen region
  547.         CH,CL = top left row,column of region
  548.         DH,DL = bottom right row,column of region
  549.         04h get driver features (bits 0-31)
  550.         Return: DX:CX = current feature bits
  551.         05h set driver features (bits 0-31)
  552.         DX:CX = feature bits
  553.         06h get driver features (bits 32-63)
  554.         Return: DX:CX = current feature bits
  555.         07h set driver features (bits 32-63)
  556.         DX:CX = feature bits
  557.         other: reserved for future use
  558. SeeAlso: AX=1AA4h,AX=1AA5h
  559. --------V-2F1AA4-----------------------------
  560. INT 2F - ANSIPLUS v4.02+ - GET/SET ANSIPLUS SMOOTH SCROLLING RATE
  561.     AX = 1AA4h
  562.     BL = function
  563.         00h get scrolling rate
  564.         01h set scrolling rate
  565.         BH = new minimum scrolling rate in scan lines per retrace
  566. Return: BH = smooth scrolling rate
  567. SeeAlso: AX=1AA3h,AX=1AA5h
  568. --------V-2F1AA5-----------------------------
  569. INT 2F - ANSIPLUS v4.00+ - GET/SET ANSIPLUS CLIPBOARD
  570.     AX = 1AA5h
  571.     DH = subfunction
  572.         00h get clipboard information
  573.         01h get clipboard text
  574.         02h set clipboard text
  575.         03h append text to clipboard
  576.         04h clear clipboard
  577.         05h paste clipboard to keyboard
  578.     ES:BX -> data area for subfunctions 01h, 02h, and 03h
  579.     CX = size of data area (maximum size for subfunction 01h, actual size
  580.         to add to clipboard for subfunctions 02h and 03h)
  581. Return: AL = status
  582.         00h successful
  583.         01h unsupported subfunction (reduced capability driver)
  584.         02h insufficient space
  585.         A5h unsupported function (ANSIPLUS before v4.00)
  586.     ES:BX -> ANSIPLUS local clipboard data
  587.     CX = number of bytes currently in local clipboard
  588.     DX = maximum size of local clipboard
  589. SeeAlso: AX=1A00h/BX=414Eh,AX=1AA4h,AX=1AA6h
  590. --------V-2F1AA6-----------------------------
  591. INT 2F - ANSIPLUS v4.00+ - ENABLE/DISABLE ANSIPLUS DRIVER
  592.     AX = 1AA6h
  593.     BH = function
  594.         00h get hooked interrupts
  595.         01h set hooked interrupts mask
  596.         BL = new interrupts mask (see #02737)
  597. Return: BL = previous interrupts mask (see #02737)
  598. SeeAlso: AX=1A00h/BX=414Eh,AX=1AA7h
  599.  
  600. Desc:    used to temporarily disable any prior copies of ANSIPLUS when a new
  601.       copy is installed, such as in a multitasking system like DESQview
  602. Note:    only the most-recently loaded copy of ANSIPLUS on the current INT 2F
  603.       chain responds to this call
  604.  
  605. Bitfields for ANSIPLUS hooked interrupts mask:
  606. Bit(s)    Description    (Table 02737)
  607.  0    INT 09 hook disabled
  608.  1    INT 10 hook disabled
  609.  2    INT 15 hook disabled
  610.  3    INT 16 hook disabled
  611.  4    INT 1C hook disabled
  612.  5    reset all bits when INT 29 called
  613.  6    INT 29 hook disabled
  614.  7    INT 33, INT 74, or other mouse event hook disabled
  615. --------V-2F1AA7-----------------------------
  616. INT 2F - ANSIPLUS v4.00+ - ENABLE/DISABLE ANSIPLUS FEATURES
  617.     AX = 1AA7h
  618.     BL = function
  619.         00h prevent scroll-back saves
  620.         01h enable scroll-back saves
  621.         02h disable key reprogramming and lock changes by escape sequences
  622.         03h enable key reprogramming by escape sequences
  623.         04h    disable and lock key stacking changes by escape sequences
  624.         05h allow key stacking by escape sequences
  625. Return: nothing
  626. SeeAlso: AX=1AA6h
  627. --------V-2F1AA8-----------------------------
  628. INT 2F - ANSIPLUS v3.10+ - GET NEXT ANSIPLUS SCROLLBACK LINE
  629.     AX = 1AA8h
  630. Return: AL = status
  631.         00h successful
  632.         ES:BX -> screen line (character and attribute pairs)
  633.         CX = length of line in bytes, 0000h if no more lines or
  634.               unsupported video mode
  635.         01h unsupported video mode active
  636.         02h screen currently scrolled back
  637.         03h reduced capability driver
  638.         A8h unsupported function (driver before v3.10)
  639. SeeAlso: AX=1A00h/BX=414Eh,AX=1AA9h
  640. --------V-2F1AA9-----------------------------
  641. INT 2F - ANSIPLUS v3.10+ - GET ANSIPLUS SCROLLBACK INFORMATION
  642.     AX = 1AA9h
  643. Return: AL = status
  644.         00h successful
  645.         BX = current number of lines in scrollback buffer
  646.         CX = number of bytes in one line
  647.         01h unsupported video mode active
  648.         02h screen currently scrolled back
  649.         03h reduced capability driver
  650.         A9h unsupported function (driver before v3.10)
  651. Desc:    determine how much data is in the scrollback buffer and initialize
  652.       scrollback retrieval to return the first line on the next call to
  653.       AX=1AA8h
  654. SeeAlso: AX=1A00h/BX=414Eh,AX=1AA8h
  655. --------V-2F1AAA-----------------------------
  656. INT 2F - ANSIPLUS v3.01+ - GET/SET ANSIPLUS SCREEN SAVER BLANKING TIME
  657.     AX = 1AAAh
  658.     BX = function
  659.         FFFFh to get current blanking time
  660.         other to set time
  661.         CX = blanking time in clock ticks (0000h-7FFFh)
  662. Return: BX = current blanking time
  663.     CX = blanking time when last set
  664. SeeAlso: AX=1A00h/BX=414Eh,AX=1AABh
  665. --------V-2F1AAB-----------------------------
  666. INT 2F - ANSIPLUS v3.01+ - SET ANSIPLUS KEY REPEAT RATE
  667.     AX = 1AABh
  668.     BX = repeat rate in characters per second
  669.         0000h use BIOS repeat rate
  670. Return: nothing
  671. SeeAlso: AX=1A00h/BX=414Eh,AX=1AAAh,AX=1AACh
  672. --------V-2F1AAC-----------------------------
  673. INT 2F - ANSIPLUS v3.00+ - LOAD CHARACTER GENERATOR
  674.     AX = 1AACh
  675.     BH = number of bytes per character pattern
  676.     BL = VGA/EGA character table to be loaded
  677.     CX = number of characters to load
  678.     DX = starting character code (offset into Map2 block)
  679.     ES:BP -> user character table to be loaded
  680. Return: AX = 1100h
  681. Desc:    load the EGA/VGA character generator without the BIOS function's
  682.       side effects of resetting the video mode and color palette
  683. SeeAlso: AX=1A00h/BX=414Eh,AX=1AABh,AX=1AADh"ANSIPLUS",INT 10/AX=1100h
  684. --------V-2F1AAD-----------------------------
  685. INT 2F - ANSIPLUS v2.00+ - ANSIPLUS DEVICE STATUS REPORT
  686.     AX = 1AADh
  687.     BL = report request code (81h-96h for v4.00)
  688.     CX = color selector or key code, if required by request
  689. Return: AX = first reported result
  690.     BX = second result
  691.     CX = third result, if applicable (unchanged otherwise)
  692.     DX = fourth result, if applicable (unchanged otherwise)
  693. Desc:    get device status reports equivalent to those for Esc [#n sequences
  694.       while bypassing any device redirection and avoiding the need to
  695.       parse the returned result
  696. Note:    the report request code in BL is identical to the number in the
  697.       corresponding Esc [#n sequence
  698. SeeAlso: AX=1A00h/BX=414Eh,AX=1AACh
  699. --------V-2F1AADDX0000-----------------------
  700. INT 2F U - AVATAR.SYS v0.11 - ???
  701.     AX = 1AADh
  702.     DX = 0000h
  703.     CX = subfunction (00h-0Ch)
  704.     ???
  705. Return: AX = 0000h if DX was nonzero
  706.     ???
  707. SeeAlso: AX=1A00h/BX=4156h,AX=1A72h
  708. --------m-2F1B00-----------------------------
  709. INT 2F U - DOS 4+ XMA2EMS.SYS extension internal - INSTALLATION CHECK
  710.     AX = 1B00h
  711. Return: AL = FFh if installed
  712. Note:    XMA2EMS.SYS extension is only installed if DOS has page frames to hide.
  713.     This extension hooks onto INT 67/AH=58h and returns from that call data
  714.       which excludes the physical pages being used by DOS.
  715. SeeAlso: AH=1Bh"FRAME INFO"
  716. --------m-2F1B-------------------------------
  717. INT 2F U - DOS 4+ XMA2EMS.SYS extension internal - GET HIDDEN FRAME INFORMATION
  718.     AH = 1Bh
  719.     AL <> 00h
  720.     DI = hidden physical page number
  721. Return: AX = FFFFh if failed (no such hidden page)
  722.     AX = 0000h if OK, then
  723.         ES = segment of page frame
  724.         DI = physical page number
  725. Notes:    this corresponds to the data edited out of the INT 67/AH=58h call
  726.     FASTOPEN makes this call with AL = FFh
  727. SeeAlso: AX=1B00h
  728. --------V-2F2300-----------------------------
  729. INT 2F - DR DOS 5.0 GRAFTABL - INSTALLATION CHECK
  730.     AX = 2300h
  731. Return: AH = FFh
  732. Note:    this installation check does not follow the usual format
  733. SeeAlso: AH=23h,AX=2E00h
  734. --------V-2F23-------------------------------
  735. INT 2F - DR DOS 5.0 GRAFTABL - GET GRAPHICS DATA
  736.     AH = 23h
  737.     AL nonzero
  738. Return: AH = FFh
  739.     ES:BX -> graphics data (8 bytes for each character from 80h to FFh)
  740. SeeAlso: AX=2300h,AX=2E00h
  741. --------T-2F2700-----------------------------
  742. INT 2F - DR DOS 6.0 TaskMAX - INSTALLATION CHECK
  743.     AX = 2700h
  744. Return: AL = status
  745.         00h not installed
  746.         FFh installed
  747. Note:    the TaskMAX API is also supported by Novell DOS 7 TASKMGR in both
  748.       taskswitching and multitasking modes
  749. --------T-2F2701-----------------------------
  750. INT 2F - DR DOS 6.0 TaskMAX - GET STATUS
  751.     AX = 2701h
  752. Return: AX = maximum simultaneous tasks
  753.     BX = index into TASK_IDS of current foreground task
  754.     CX = currently-active tasks
  755.     DX = version number (DL = major, DH = minor)
  756.         (DR DOS 6.0 = 0001h, Novell DOS 7 = 0002h)
  757.     ES:SI -> TASK_IDS
  758.     ES:DI -> name table (array of 8-byte names, NUL-terminated if <8 chars)
  759. Notes:    do not attempt to create a new task if CX == AX
  760.     the task's index is its position on the task menu, while its ID is the
  761.       position within the internal task name table
  762. SeeAlso: AX=2714h,AX=2716h
  763. --------T-2F2702-----------------------------
  764. INT 2F - DR DOS 6.0 TaskMAX - GET PER-TASK EMS LIMIT
  765.     AX = 2702h
  766. Return: DX = maximum pages INT 67/AH=42h will report available
  767. Note:    TaskMAX does not limit EMS allocations other than by limiting the
  768.       amount which is reported as being available at a given time
  769. SeeAlso: AX=2703h,INT 67/AH=42h
  770. --------T-2F2703-----------------------------
  771. INT 2F - DR DOS 6.0 TaskMAX - SET PER-TASK EMS LIMIT
  772.     AX = 2703h
  773.     DX = maximum pages INT 67/AH=42h should report available
  774. Return: DX = new maximum for reporting
  775. Note:    the TaskMAX API is also supported by Novell DOS 7 TASKMGR in
  776.       both taskswitching and multitasking modes
  777. SeeAlso: AX=2702h,INT 67/AH=42h
  778. --------T-2F2704-----------------------------
  779. INT 2F - DR DOS 6.0 TaskMAX - REGISTER/UNREGISTER TASK MANAGER
  780.     AX = 2704h
  781.     DL = subfunction
  782.         00h unregister task manager
  783.         01h register task manager
  784. Return: DL = status
  785.         00h registered
  786.         01h unregistered
  787. Notes:    a task manager replaces TaskMAX's menu system with its own user
  788.       interface; while one is registered, the TaskMAX hotkeys and
  789.       Ctrl-Alt-Del invoke the manager rather than the built-in menu system
  790.     unregister the task manager before terminating it
  791. SeeAlso: AX=2705h
  792. Index:    hotkeys;TaskMAX
  793. --------T-2F2705-----------------------------
  794. INT 2F - DR DOS 6.0 TaskMAX - ENABLE/DISABLE DIRECT SWITCHING
  795.     AX = 2705h
  796.     DL = subfunction
  797.         00h disable keystrokes for switching to next/prev/specified task
  798.         01h enable
  799. Return: nothing
  800. Note:    should only be called by a registered task manager (see AX=2704h)
  801. SeeAlso: AX=2704h,AX=2706h
  802. --------T-2F2706-----------------------------
  803. INT 2F - DR DOS 6.0 TaskMAX - SWITCH TO SPECIFIED TASK
  804.     AX = 2706h
  805.     DX = task index (see AX=2701h) of task to be activated
  806. Return: DX = task index of previously-active task
  807. Note:    the TaskMAX API is also supported by Novell DOS 7 TASKMGR in
  808.       both taskswitching and multitasking modes
  809. SeeAlso: AX=2705h,AX=2707h,AX=2715h
  810. --------T-2F2707-----------------------------
  811. INT 2F - DR DOS 6.0 TaskMAX - CREATE NEW TASK
  812.     AX = 2707h
  813.     DS:DX -> ASCIZ pathname of executable
  814.     ES:BX -> parameter block (see #02738)
  815.     CX = number of ticks before automatic return to task manager
  816.         (0000h = run until termination or explicitly switched)
  817. Return: DX = new task's task index (FFFFh if task terminated)
  818. SeeAlso: AX=2706h,AX=2708h
  819.  
  820. Format of TaskMAX parameter block:
  821. Offset    Size    Description    (Table 02738)
  822.  00h    WORD    reserved, should be 0000h
  823.  02h    DWORD    pointer to command tail to be copied into child's PSP
  824.  06h    DWORD    pointer to first FCB to be copied into child's PSP
  825.  0Ah    DWORD    pointer to second FCB to be copied into child's PSP
  826. --------T-2F2708-----------------------------
  827. INT 2F - DR DOS 6.0 TaskMAX - DELETE TASK
  828.     AX = 2708h
  829.     DX = task index
  830. Return: DX = FFFFh (task deleted)
  831. Notes:    this call should only be used for abnormal task termination, after
  832.       first checking for open files with AX=270Ch; should not be used
  833.       with programs that allocate EMS or XMS memory
  834.     switches to specified task first
  835. SeeAlso: AX=2707h
  836. --------T-2F2709-----------------------------
  837. INT 2F - DR DOS 6.0 TaskMAX - NAME TASK
  838.     AX = 2709h
  839.     DX = task index
  840.     DS:SI -> 8-byte name (8 NULs = remove name)
  841. Return: AL = task flags
  842.         00h ID unused or task terminated
  843.         01h ID in use, task name table entry valid
  844.         81h ID in use, task name fixed
  845.     BX = task ID
  846.     ES:DI -> name in task name table (see AX=2701h)
  847. Note:    the task retains the given name until it terminates or the name is
  848.       removed by specifying a name of 8 NULs.
  849. SeeAlso: AX=2701h,AX=2707h
  850. --------T-2F270A-----------------------------
  851. INT 2F - DR DOS 6.0 TaskMAX - CONVERT TASK INDEX TO TASK ID
  852.     AX = 270Ah
  853.     DX = task index
  854. Return: DX = task ID (FFFFh if index invalid)
  855. Note:    task IDs stay constant, while indexes can change when other tasks are
  856.       deleted
  857. SeeAlso: AX=2701h,AX=270Bh
  858. --------T-2F270B-----------------------------
  859. INT 2F - DR DOS 6.0 TaskMAX - CONVERT TASK ID TO TASK INDEX
  860.     AX = 270Bh
  861.     DX = task ID
  862. Return: DX = task index (FFFFh if task not active)
  863. Note:    the TaskMAX API is also supported by Novell DOS 7 TASKMGR in both
  864.       taskswitching and multitasking modes
  865. SeeAlso: AX=270Ah
  866. --------T-2F270C-----------------------------
  867. INT 2F - DR DOS 6.0 TaskMAX - CHECK OPEN FILES
  868.     AX = 270Ch
  869.     DX = task index
  870. Return: AX = number of files currently open for specified task
  871. SeeAlso: AX=2708h
  872. --------T-2F270D-----------------------------
  873. INT 2F - DR DOS 6.0 TaskMAX - CHECK IF TASK RUNNING PRIMARY COMMAND INTERPRETER
  874.     AX = 270Dh
  875.     DX = task index
  876. Return: DX = status
  877.         0000h if primary command interpreter (COMMAND.COM, etc.) running
  878.         0001h if not in root shell for task
  879. Note:    TaskMAX will return 0001h if the specified task has spawned another
  880.       command interpreter with AX=2707h
  881. SeeAlso: AX=2707h,AX=270Ch
  882. --------T-2F270E-----------------------------
  883. INT 2F - DR DOS 6.0 TaskMAX - GET/SET TEXT PASTE LEAD-IN
  884.     AX = 270Eh
  885.     CX = length of string (max 15 keystrokes, 0000h to get current string)
  886.     DS:SI -> pasting lead-in string (character/scan-code pairs)
  887. Return: ES:DI -> current lead-in string
  888. Note:    the specified sequence of keystrokes is sent to the application before
  889.       every line of a text-mode spreadsheet paste
  890. SeeAlso: AX=270Fh,AX=2710h,AX=2713h
  891. --------T-2F270F-----------------------------
  892. INT 2F - DR DOS 6.0 TaskMAX - GET/SET NUMERIC PASTE LEAD-IN
  893.     AX = 270Fh
  894.     CX = length of string (max 15 keystrokes, 0000h to get current string)
  895.     DS:SI -> pasting lead-in string (character/scan-code pairs)
  896. Return: ES:DI -> current lead-in string
  897. Note:    the specified sequence of keystrokes is sent to the application before
  898.       every number in a numeric-mode spreadsheet paste
  899. SeeAlso: AX=270Eh,AX=2710h,AX=2711h,AX=2713h
  900. --------T-2F2710-----------------------------
  901. INT 2F - DR DOS 6.0 TaskMAX - GET/SET PASTE LINE TERMINATOR STRING
  902.     AX = 2710h
  903.     CX = length of string (max 15 keystrokes, 0000h to get current string)
  904.     DS:SI -> pasting terminator string (character/scan-code pairs)
  905. Return: ES:DI -> current terminator string
  906. Note:    the specified sequence of keystrokes is sent to the application after
  907.       every line of a spreadsheet paste operation
  908. SeeAlso: AX=270Eh,AX=270Fh,AX=2713h
  909. --------T-2F2711-----------------------------
  910. INT 2F - DR DOS 6.0 TaskMAX - GET/SET NUMERIC PASTE DECIMAL POINT
  911.     AX = 2711h
  912.     DX = ASCII code for separator (FFFFh to get current)
  913. Return: DL = current separator character
  914. SeeAlso: AX=270Fh
  915. --------T-2F2712-----------------------------
  916. INT 2F - DR DOS 6.0 TaskMAX - INITIATE EXPORTING TASK DATA
  917.     AX = 2712h
  918.     DX = task index
  919. --------T-2F2713-----------------------------
  920. INT 2F - DR DOS 6.0 TaskMAX - INITIATE PASTE OPERATION
  921.     AX = 2713h
  922.     DX = task index
  923.     CX = paste mode
  924.         0000h alphanumeric
  925.         0001h numeric
  926.         0002h text
  927. SeeAlso: AX=270Eh,AX=270Fh,AX=2710h,AX=2711h
  928. --------T-2F2714-----------------------------
  929. INT 2F - DR DOS 6.0 TaskMAX - GET SWAP SPACE INFO
  930.     AX = 2714h
  931. Return: CX = total KB of swap space
  932.     DX = available KB of swap space
  933. Note:    the TaskMAX API is also supported by Novell DOS 7 TASKMGR in both
  934.       taskswitching and multitasking modes
  935. SeeAlso: AX=2701h
  936. --------T-2F2715-----------------------------
  937. INT 2F - DR DOS 6.0 TaskMAX - SWITCH TO TASK MANAGER
  938.     AX = 2715h
  939. Return: only after calling task is again selected
  940. SeeAlso: AX=2706h
  941. --------T-2F2716-----------------------------
  942. INT 2F - DR DOS 6.0 TaskMAX - GET PASTE BUFFER STATUS
  943.     AX = 2716h
  944. Return: AX = 0000h if AX=2716h,AX=2717h,AX=2718h supported
  945.         CX = bytes in paste buffer
  946.         DX = current generation number (updated after every copy operation)
  947. BUG:    Novell DOS 7 TASKMGR returns AX=0000h even though it does not support
  948.       this call (it does support the remainder of the TaskMAX API)
  949. SeeAlso: AX=2701h,AX=2713h,AX=2714h,AX=2717h,AX=2718h
  950. --------T-2F2717-----------------------------
  951. INT 2F - DR DOS 6.0 TaskMAX - PASTE DATA DIRECTLY TO APPLICATION BUFFER
  952.     AX = 2717h
  953.     CX = bytes in destination buffer
  954.     ES:DI -> destination buffer
  955. Return: AX = 0000h if function supported
  956.         CX = bytes actually copied (FFFFh if buffer too small)
  957.         DX = current generation number for paste buffer
  958. BUG:    Novell DOS 7 TASKMGR returns AX=0000h even though it does not support
  959.       this call (it does support the remainder of the TaskMAX API)
  960. Note:    the destination buffer may be too small if another task adds more data
  961.       to the paste buffer after the AX=2716h call but before this call
  962. SeeAlso: AX=2713h,AX=2716h,AX=2718h
  963. --------T-2F2718-----------------------------
  964. INT 2F - DR DOS 6.0 TaskMAX - COPY DATA DIRECTLY INTO PASTE BUFFER
  965.     AX = 2718h
  966.     CX = bytes in source buffer
  967.     DS:SI -> source buffer (plain ASCII, lines terminated with CR LF)
  968. Return: AX = 0000h if function supported
  969.         CX = bytes actually copied
  970.         DX = current generation number for paste buffer
  971. BUG:    Novell DOS 7 TASKMGR returns AX=0000h even though it does not support
  972.       this call (it does support the remainder of the TaskMAX API)
  973. SeeAlso: AX=2712h,AX=2716h,AX=2717h
  974. --------T-2F2719-----------------------------
  975. INT 2F - Novell DOS 7 TaskMGR - NOP
  976.     AX = 2719h to 271Bh
  977. --------T-2F271C-----------------------------
  978. INT 2F U - Novell DOS 7 TaskMGR - ???
  979.     AX = 271Ch
  980.     DX = ???
  981.         bit 0: ???
  982. Return: ???
  983.     ---if DX bit 0 set---
  984.     AX = 0031h
  985.     CX = 0000h
  986. BUG:    if the task switcher is running, and DX bit 0 is set on call, this
  987.       function will crash because its exit code attempts to pop several
  988.       registers which are not pushed when DX bit 0 is set
  989. --------m-2F2780CL01-------------------------
  990. INT 2F U - Novell DOS 7 - EMM386.EXE - MULTITASKING API - SUPERVISOR MODULE
  991.     AX = 2780h
  992.     CL = 01h (module: Supervisor)
  993.     CH = subfunction
  994.         00h unused
  995.         Return: CX = status (0002h) (see #02739)
  996.         01h unused
  997.         Return: CX = status (0002h) (see #02739)
  998.         02h "Z_ModuleReg" register an OS module
  999.         EBX = module number (0005h-000Fh)
  1000.         DS:EDX -> module descriptor (see #02741)
  1001.         Return: CX = status (0000h,0030h) (see #02739)
  1002.         03h allocate SYSDAT memory
  1003.         DX = number of ??? to allocate
  1004.         Return: CX = status (0000h,0003h) (see #02739)
  1005.         04h get selector to SYSDAT
  1006.         Return: CX = 0000h (successful)
  1007.             BX = selector for EMM386 data segment
  1008.             EBX high word cleared
  1009.         05h "Z_MoveReal" relocate segment into extended memory
  1010.         DS:EDX -> descriptor parameter block
  1011.         Return: ECX = status (00h,03h,31h,32h) (see #02739)
  1012.             ---if successful---
  1013.             parameter block filled
  1014.         06h "Z_Reboot" return to real mode via triple fault
  1015.         07h debugger break
  1016.         Note:    calls INT 03, then INT 21/AH=02h to output a question
  1017.               mark
  1018.         08h "X_ForeCheck" check if domain is in foreground
  1019.         Return: CX = 0000h (successful)
  1020.             EBX = ??? (0 or 2)
  1021.         09h register VxD with system
  1022.         0Ah unload VxD hook
  1023.         0Bh indicate end of initialization phase
  1024.         Return: CX = status (0002h) (see #02739)
  1025.         0Ch "F_AllocWindow" allocate 4K mapping window
  1026.         0Dh "F_RegisterBoot" register reboot addresses
  1027.         EBX = ???
  1028.         EDX = ???
  1029.         Return: ???
  1030.         0Eh "F_EnquireBoot" check if reboot active
  1031.         Return: CX = 0000h (successful)
  1032.             BL = ???     \ or BX = 0000h
  1033.             BH = ???     /
  1034.         0Fh get debugging level
  1035.         Return: CX = 0000h (successful)
  1036.             EBX = new value for debugging level
  1037.         10h set debugging level
  1038.         EDX = ???
  1039.         Return: CX = 0000h (successful)
  1040.             EBX = old value of debugging level
  1041.         11h installation check (documented)
  1042.         Return: CX = status
  1043.                 0000h if multitasker is installed
  1044.                 EBX = version (0100h for v1.00)
  1045.                 1101h if multitasker is not present
  1046.         12h "F_V86BPInstall" install V86 breakpoint
  1047.         DX = ???
  1048.         Return: CX = 0000h (successful)
  1049.             AX = old value of ???
  1050.         13h "F_V86BPRemove" remove V86 breakpoint
  1051.         Return: CX = status (0000h,003Fh) (see #02739)
  1052.             AX = ???
  1053.         14h "F_V86BPOffer" indicate INT 03 to be used as V86 breakpoint
  1054.         EDX = linear address ??? of INT 03 instruction for breakpoint
  1055.         Return: CX = status (0000h,003Fh) (see #02739)
  1056.         15h "F_LoaderCleanup" offer opportunity to clean up
  1057.         BX = segment of ???
  1058.         Return: CX = 0000h (successful)
  1059.             BX = segment of ???
  1060.         16h "F_RegisterVxDWindow" register VxD mapping window
  1061.         17h "F_RegisterPNW" register Personal NetWare information
  1062.         EBX = subfunction (0-2)
  1063.         Return: CX = status (0002h if EBX>2) (see #02739)
  1064.             ???
  1065.         18h unused
  1066.         Return: CX = status (0002h) (see #02739)
  1067. Return: CX = status (most subfunctions)
  1068.     (E)AX and/or (E)BX contain return values, depending on function
  1069. Notes:    called by DPMS.EXE and EMM386.EXE
  1070.     this API is only available if AX=12FFh/BX=0EDCh returns successfully;
  1071.       because the request is handled on the initial trap to the memory
  1072.       manager caused by INT instructions, this API must be invoked with
  1073.       an actual INT 2F instruction instead of some simulation such as a
  1074.       far call to the address in the interrupt vector table
  1075. SeeAlso: AX=12FFh/BX=0EDCh,AX=2780h/CL=02h,AX=2780h/CL=03h,AX=2780h/CL=04h
  1076.  
  1077. (Table 02739)
  1078. Values for Novell DOS 7 EMM386 function status:
  1079.  0000h    successful
  1080.  0001h    not implemented
  1081.  0002h    invalid subfunction
  1082.  0003h    unable to find memory
  1083.  0004h    invalid flag (semaphore) number
  1084.  0005h    flag (semaphore) overrun
  1085.  0006h    flag (semaphore) underrun
  1086.  0007h    no queue handles available
  1087.  0009h    no queue buffers available
  1088.  000Ah    queue is in use
  1089.  000Bh    invalid process handle
  1090.  000Ch    no process handles available
  1091.  000Dh    queue access not permitted
  1092.  000Eh    queue is empty
  1093.  000Fh    queue is full
  1094.  0012h    no memory handles available
  1095.  0014h    can't find process in process list
  1096.  001Bh    invalid memory handle
  1097.  0023h    unable to terminate process
  1098.  002Ah    flag set ignored
  1099.  002Dh    no more system flags
  1100.  002Eh    flag (semaphore) not in idle state
  1101.  002Fh    flag (semaphore) wait timed out
  1102.  0030h    bad module number in CL
  1103.  0031h    bad descriptor
  1104.     invalid value for DESC_PB_SINFO in a descriptor parameter block
  1105.  0032h    no free descriptors
  1106.  0033h    error while locking/unlocking a page
  1107.  0034h    error getting or setting a page
  1108.  0035h    no pages available
  1109.  0036h    invalid domain
  1110.  0037h    process already frozen
  1111.  0038h    process not frozen
  1112.  0039h    fork failure (no registered swaplist)
  1113.  003Ah    page already free
  1114.  003Bh    page already allocated
  1115.  003Ch    unable to switch tasks
  1116.  003Dh    attempted to free critical section which is not active
  1117.  003Eh    too many active critical sections
  1118.  003Fh    ???
  1119.  41FFh    current domain is invalid, or no domain in context
  1120.  42FFh    domain ID is not a valid descriptor
  1121.  43FFh    domain creation still in progress
  1122.  44FFh    domain currently being deleted
  1123.  45FFh    task manager is busy, cannot unload it
  1124.  46FFh    task manager already loaded
  1125.  47FFh    task manager not yet loaded
  1126.  48FFh    cannot save/restore because prior switch not complete
  1127.  49FFh    console already has owner
  1128.  4BFFh    unsupported opcode
  1129.  4CFFh    32-bit address prefix not supported
  1130.  4FFFh    timeout, but not on timer queue
  1131.  50FFh    unable to lock timer queue
  1132.  53FFh    unable to switch while in Global Message Mode
  1133.  54FFh    error while setting Global Message Mode
  1134.  55FFh    not in Global Message Mode
  1135.  56FFh    system already in Domain Message Mode
  1136.  57FFh    not in Domain Message Mode
  1137.  58FFh    unable to allocate timeout structure
  1138.  59FFh    unsupported video type
  1139.  5AFFh    function not handled by any VM
  1140.  5BFFh    error in Serial..Set call
  1141.  5CFFh    error in Parallel..Set call
  1142.  5DFFh    domain list overflowed
  1143.  5FFFh    unable to free domain while in nobuffers mode
  1144.  
  1145. Format of Novell DOS/OpenDOS EMM386 descriptor parameter block:
  1146. Offset    Size    Description    (Table 02740)
  1147.  00h    DWORD    "DESC_PB_BASE"
  1148.  04h    DWORD    "DESC_PB_LIMIT"
  1149.  08h    WORD    "DESC_PB_SEL"
  1150.  0Ah    BYTE    "DESC_PB_MINFO"
  1151.  0Bh    BYTE    "DESC_PB_SINFO"
  1152. SeeAlso: #02741
  1153.  
  1154. Format of Novell DOS/OpenDOS EMM386 module descriptor:
  1155. Offset    Size    Description    (Table 02741)
  1156.  00h 12 BYTEs    descriptor parameter block (see #02740)
  1157.  0Ch    DWORD    -> module entry point
  1158. Note:    for function "Z_ModuleReg", only DESC_PB_SEL and the module entry point
  1159.       need to be initialized before calling EMM386
  1160. SeeAlso: #02740
  1161. --------m-2F2780CL02-------------------------
  1162. INT 2F U - Novell DOS 7 - EMM386.EXE - MULTITASKING API - REAL-TIME MONITOR
  1163.     AX = 2780h
  1164.     CL = 02h (module: Real-Time Monitor)
  1165.     CH = subfunction
  1166.         00h ???
  1167.         ???
  1168.         Return: CX = status (0000h,0023h, others???) (see #02739)
  1169.             BX = ??? (0000h if CX=0000h, FFFFh if CX=0023h)
  1170.         Note:    calls func 04h/sf 03h, func 04h/sf 1Eh,func 02h/sf 43h,
  1171.               func 02h/sf 0Bh, and func 04h/sf 01h
  1172.         01h "Z_PCountGet" get and clear count of dispatches
  1173.         DX = ??? handle or 0000h for default
  1174.         Return: CX = status (0000h,000Bh) (see #02739)
  1175.             EBX = old value of ??? if successful
  1176.             EDX destroyed
  1177.         02h "Z_FlagWait" wait on semaphore
  1178.         DX = index of semaphore???
  1179.         Return: CX = status (0000h,0004h,0005h) (see #02739)
  1180.             EBX = 0000FFFFh on error, 00000000h if successful
  1181.         03h "Z_FlagSet" set a semaphore flag
  1182.         DX = index of semaphore???
  1183.         Return: CX = status (0000h,0004h,0006h) (see #02739)
  1184.             BX = FFFFh on error, 0000h if successful
  1185.         04h "X_QCreate" create a new queue
  1186.         Return: CX = status (0000h,0007h,000Ah) (see #02739)
  1187.         05h "X_QOpen" open queue for reading/writing
  1188.         EDX -> ??? data (first 8 bytes seem to be name)
  1189.         Return: CX = status (0000h,0009h,000Dh) (see #02739)
  1190.         06h "X_QDelete" delete a queue
  1191.         Note:    calls fn 02h/subfn 05h, then fn 02h/subfn 40h
  1192.         07h "X_QRead" read message from queue
  1193.         EDX = ???
  1194.         Return: CX = status (0000h,0009h,000Eh) (see #02739)
  1195.         08h "X_QReadC" read message from queue, if any
  1196.         EDX = ???
  1197.         Return: CX = status (0000h,0009h,000Eh) (see #02739)
  1198.         09h "X_QWrite" write message to queue
  1199.         EDX = ???
  1200.         Return: CX = status (0000h,0009h,000Fh) (see #02739)
  1201.         0Ah "X_QWriteC" write message to queue, if space available
  1202.         EDX = ???
  1203.         Return: CX = status (0000h,0009h,000Fh) (see #02739)
  1204.         0Bh "X_PDelay" put process to sleep for specified period
  1205.         DX = number of clock ticks to sleep???
  1206.         Return: CX = 0000h (successful)
  1207.         0Ch "X_PDispatch" force a dispatch (run scheduler)
  1208.         Return: CX = 0000h (successful)
  1209.         0Dh "F_PTerm" terminate process???
  1210.         Return: CX = status (0000h,0023h) (see #02739)
  1211.             BX = FFFFh on error, 0000h if successful
  1212.         Note:    calls fn 04h/subfn 03h, fn 04h/subfn 1Eh,
  1213.               fn 02h/subfn 43h, fn 02h/subfn 0Bh, fn 04h/sub 01h
  1214.         0Eh "X_PCreate" create new process
  1215.         ???
  1216.         Return: CX = status (0000h,000Ch) (see #02739)
  1217.             EBX = ??? if successful
  1218.         0Fh "Z_PPriorSet" set process priority
  1219.         BX = ???
  1220.         DX = ??? handle or 0000h for default
  1221.         Return: CX = status (0000h,000Bh) (see #02739)
  1222.         10h "X_PHandleGet" get current process handle
  1223.         Return: CX = 0000h (successful)
  1224.             BX = handle of default ???
  1225.             EBX high word cleared
  1226.         11h "X_PTerm" terminate process
  1227.         DX = process handle or 0000h for current
  1228.         BX = ??? (handle???)
  1229.         Return:    CX = status (0000h,000Bh,0014h) (see #02739)
  1230.         12h "F_Sleep" ???
  1231.         BX = ???
  1232.         DX = ???
  1233.         Return: CX = 0000h (successful)
  1234.         13h "F_Wakeup" ???
  1235.         DX = ???
  1236.         Return: CX = status (see #02739)
  1237.         14h "F_FindPDName" find process by name???
  1238.         BX = ???
  1239.         DX = ???
  1240.         Return: CX = status (0000h,0014h) (see #02739)
  1241.             BX = FFFFh on error, ??? if successful
  1242.         15h "F_SetFlags" set ??? flags
  1243.         BX = ??? (low two bits only)
  1244.         DX = ??? handle or 0000h for default
  1245.         Return: CX = status (0000h,000Bh) (see #02739)
  1246.             BX = new value of ??? flags (entire word)
  1247.             EBX high register cleared
  1248.         16h "F_EndOfInterrupt" issue EOI to PIC
  1249.         Return: CX = 0000h (successful)
  1250.         17h "X_PTermOff" disable process termination
  1251.         18h "X_PTermOK" enable process termination
  1252.         19h "Z_FlagStatusGet" get semahprore's status
  1253.         1Ah "F_QRdMX" ???
  1254.         1Bh "F_QWrMX" ???
  1255.         1Ch "Z_FlagAlloc" allocate a new semaphore
  1256.         1Dh "Z_FlagFree" free semaphore
  1257.         1Eh "X_FlagsMaxGet" get number of semaphores supported
  1258.         1Fh "X_QReadNDC" non-destructive read from queue (peek)
  1259.         20h "Z_FlagWWTO" wait on semaphore, with timeout
  1260.         21h "F_UdaAlloc" ???
  1261.         22h "F_UdaFree" ???
  1262.         23h "X_PSuspend" suspend process
  1263.         24h "X_PUnsuspend" restart process after suspension
  1264.         25h "X_CritEnter" enter critical region
  1265.         26h "X_CritExit" leave critical region
  1266.         27h "F_PCreate" ???
  1267.         28h "Z_PHandleListGet" get list of process handles
  1268.         29h "Z_PNameGet" get process name
  1269.         2Ah "Z_PStatusGet" get process status
  1270.         2Bh "F_PDToDomain" get process' domain???
  1271.         2Ch "Z_PPriorGet" get process priority
  1272.         2Dh "F_QDList" get list of queues???
  1273.         2Eh "Z_QNameGet" get queue's name
  1274.         2Fh "X_QMsgLenGet" get message length of queue
  1275.         30h "X_QMsgMaxGet" get message capacity of queue
  1276.         31h "Z_QWriterGet" get handle of process waiting to write queue
  1277.         32h "Z_QReaderGet" get handle of process waiting to read queue
  1278.         33h "X_QMsgNumGet" get number of messages in queue
  1279.         34h "Z_QFlagsGet" get queue's flags
  1280.         35h "F_NameToQD" get queue by name???
  1281.         36h "F_NameToPD" get process by name???
  1282.         37h "X_MXCreate" create a mutex
  1283.         38h "X_MXDelete" delete a mutex
  1284.         39h "X_MXEnter" enter mutual-exclusion zone
  1285.         3Ah "X_MXEnterC" enter mutual-exclusion zone if it is free
  1286.         3Bh "X_MXExit" leave mutual-exclusion zone
  1287.         3Ch "Z_TicksSet" set length of foreground time slices
  1288.         3Dh "X_TickGet" get clock tick period
  1289.         3Eh "F_ProcessID" ???
  1290.         3Fh "X_QClose" close a queue
  1291.         40h "F_QDispose" delete queue???
  1292.         41h "F_PDToFlags" get process flags???
  1293.         42h "F_PDToDParam" ???
  1294.         43h "F_ReleaseMX" release mutex???
  1295.         44h "F_SimulateInt" ???
  1296.         45h "Z_QFlagsSet" set queue's flags
  1297.         46h "F_TickRate" ???
  1298.         47h ???
  1299. Return: CX = status (most subfunctions)
  1300.     (E)AX and/or (E)BX contain return values, depending on function
  1301. Notes:    called by DPMS.EXE and EMM386.EXE
  1302.     this API is only available if AX=12FFh/BX=0EDCh returns successfully;
  1303.       because the request is handled on the initial trap to the memory
  1304.       manager caused by INT instructions, this API must be invoked with
  1305.       an actual INT 2F instruction instead of some simulation such as a
  1306.       far call to the address in the interrupt vector table
  1307. SeeAlso: AX=12FFh/BX=0EDCh,AX=2780h/CL=01h,AX=2780h/CL=03h,AX=2780h/CL=04h
  1308. --------m-2F2780CL03-------------------------
  1309. INT 2F U - Novell DOS 7 - EMM386.EXE - MULTITASKING API - MEMORY
  1310.     AX = 2780h
  1311.     CL = 03h (module: Memory)
  1312.     CH = subfunction
  1313.         00h ???
  1314.         01h "F_PdirGet" ???
  1315.         02h "F_PdirSet" ???
  1316.         03h "Z_PageAlloc" allocate a given page of memory
  1317.         04h "F_PageAllocG" allocate global page???
  1318.         05h "F_PageAllocI" allocate instance page???
  1319.         06h "F_PtblRead" get page table???
  1320.         07h "F_PtrlWrite" select page table???
  1321.         08h "Z_PtblGet" read page table
  1322.         09h "Z_PtblSet" change page table
  1323.         0Ah "Z_PagesAlloc" allocate pages of memory
  1324.         0Bh "Z_PageFree" free a given page of memory
  1325.         0Ch "Z_MemAlloc" allocate a memory block
  1326.         0Dh "Z_MemFree" release memory block
  1327.         0Eh "Z_MemSizeGet" get size of memory block
  1328.         0Fh "Z_MemResize" resize a memory block
  1329.         10h "Z_DescAlloc" allocate a memory descriptor
  1330.         11h "Z_DescFree" release a memory descriptor
  1331.         12h "Z_DescGet" get details on memory descriptor
  1332.         13h "Z_DescSet" set a memory descriptor
  1333.         14h "Z_MemDescAlloc" allocate a memory block and its descriptor
  1334.         15h "Z_MemDescFree" release a memory block and its descriptor
  1335.         16h "Z_MemDescSizeGet" get size of memory block
  1336.         17h "Z_MemDescResize" resize a memory block
  1337.         18h "Z_PageLock" lock a page, with existing contents
  1338.         19h "Z_PageUnlock" unlock a page
  1339.         1Ah "Z_PageLockAny" lock a page, contents undefined
  1340.         1Bh "Z_PageUnlockReuse" unlock page, reuse phsyical memory
  1341.         1Ch "Z_PageLockNone" lock a page, no physical memory assigned
  1342.         1Dh "Z_PageUnlockNone" unlock a page, don't reuse physical memory
  1343.         1Eh "F_CallRealRaw" call real mode (SS:ESP supplied)
  1344.         1Fh "F_IntRealRaw" perform real-mode interrupt (SS:ESP supplied)
  1345.         20h "F_CallReal" call real mode with RETF frame
  1346.         21h "F_IntReal" perform real-mode interrupt
  1347.         22h "F_PagedCallReal" paged real-mode call
  1348.         23h "F_PagedIntReal" paged real-mode interrupt
  1349.         24h "F_CallIretReal" call real mode with IRET frame
  1350.         25h "F_CallIretRealRaw" call real mode with IRET (SS:ESP supplied)
  1351.         26h "F_CallProt16" call 16-bit protected-mode code
  1352.         27h "F_CallProt32" call 32-bit protected-mode code
  1353.         28h "F_IAddPage" add kernel instance data
  1354.         29h "Z_PageDomLock" lock page in specific domain, preserve contents
  1355.         2Ah "Z_PatgeDomUnlock" unlock page in specific domain
  1356.         2Bh "Z_PageDomLockAny" lock page in specific domain, undef contents
  1357.         2Ch "Z_PageDomUnlockReuse" unlock page in spec. domain,reuse ph.mem
  1358.         2Dh "Z_PageDomLockNone" lock page in spec. domain, no phys memory
  1359.         2Eh "Z_PageDomUnlockNone" unlock page in spec. domain, no phys. mem
  1360.         2Fh "Z_GateAlloc" allocate a gate
  1361.         30h "Z_GateFree" release a gate
  1362.         31h "X_MemFreeGet" get total free memory
  1363.         32h "X_MemTopGet" get highest memory address
  1364.         33h "X_MemTotalGet" get total memory size
  1365.         34h "F_DescRead" ???
  1366.         35h "F_DescWrite" ???
  1367.         36h "F_GetStack" ???
  1368.         37h "F_SetStack" ???
  1369. Return: CX = status (most subfunctions)
  1370.     (E)AX and/or (E)BX contain return values, depending on function
  1371. Notes:    called by DPMS.EXE and EMM386.EXE
  1372.     this API is only available if AX=12FFh/BX=0EDCh returns successfully;
  1373.       because the request is handled on the initial trap to the memory
  1374.       manager caused by INT instructions, this API must be invoked with
  1375.       an actual INT 2F instruction instead of some simulation such as a
  1376.       far call to the address in the interrupt vector table
  1377. SeeAlso: AX=12FFh/BX=0EDCh,AX=2780h/CL=01h,AX=2780h/CL=02h,AX=2780h/CL=04h
  1378. --------m-2F2780CL04-------------------------
  1379. INT 2F U - Novell DOS 7 - EMM386.EXE - MULTITASKING API - DOMAINS
  1380.     AX = 2780h
  1381.     CL = 04h (module: Domains)
  1382.     CH = subfunction
  1383.         00h "F_DAlloc" create new domain
  1384.         01h "F_DFree" delete a domain
  1385.         02h "X_DomHandleGetMy" get current domain handle
  1386.         03h "F_DSet" switch to another domain
  1387.         04h "Z_HandlerSWInt" install software-interrupt handler
  1388.         05h "Z_HandlerPageFault" install page-fault handler
  1389.         06h "Z_HandlerIOEx" install I/O exception handler
  1390.         07h "Z_HandlerGenEx" install general exception handler
  1391.         08h "Z_HandlerHWInt" install hardware interrupt handler
  1392.         09h "Z_IOBitmapGet" get current domain's I/O bitmap entry
  1393.         0Ah "Z_IOBitmapSet" set current domain's I/O bitmap entry
  1394.         0Bh "Z_IOBitmapDomGet" get domain's I/O bitmap entry
  1395.         0Ch "Z_IOBitmapDomSet" set domain's I/O bitmap entry
  1396.         0Dh "Z_DomMemRead" read memory in another domain
  1397.         0Eh "Z_DomMemWrite" write memory in another domain
  1398.         0Fh "Z_PtblDomGet" read domain's page table
  1399.         10h "Z_PtblDomSet" write domain's page table
  1400.         11h "Z_InstanceSet" register instanced memory
  1401.         12h "X_DomNProcessesGet" get number of processes in domain
  1402.         13h "X_DomSuspend" suspend a domain
  1403.         14h "Z_DomUnsuspend" resume execution of a domain
  1404.         15h "Z_DomFork" make a copy of the current domain
  1405.         16h "Z_DomTerm" terminate domain and all processes in it
  1406.         17h "Z_HandlerUnlink" remove a handler
  1407.         18h "Z_HandlerHWIntDflt" install default hardware interrupt handler
  1408.         19h "Z_HandlerVHWInt" install virtual hardware interrupt handler
  1409.         1Ah "Z_HandlerVHWIntDflt" install default virtual hware int handler
  1410.         1Bh "Z_HandlerSwapIn" install swap-in handler
  1411.         1Ch "Z_HandlerSwapOut" install swap-out handler
  1412.         1Dh "Z_EndOfInterrupt" signal EOI
  1413.         1Eh ???
  1414.         1Fh "Z_HandlerPCreate" install process-creation handler
  1415.         20h "Z_HandlerPTerm" install process-termination handler
  1416.         21h "Z_DomRootProcessGet" get domain's root process' handle
  1417.         22h "F_DForeground" domain has just switched to foreground
  1418.         23h "F_DBackground" domain has just switched to background
  1419.         24h "F_MapHMA" map domain's HMA
  1420.         25h "F_AddInstData" add DOS instance data
  1421.         26h "X_DomMemFreeGet" get free memory in a domain
  1422.         27h "X_DomMemUsedGet" get memory used by current domain
  1423.         28h "Z_DomMemMaxGet" get per-domain memory limit
  1424.         29h "Z_DomMemMaxSet" set per-domain memory limit
  1425.         2Ah "F_ReflectInt21" protected-mode INT 21 support
  1426.         2Bh "Z_DomHandleGet" get domain for a process
  1427.         2Ch ???
  1428.         2Dh ???
  1429.         2Eh ???
  1430.         2Fh ???
  1431.         30h ???
  1432.         31h ???
  1433.         32h ???
  1434. Return: CX = status (most subfunctions)
  1435.     (E)AX and/or (E)BX contain return values, depending on function
  1436. Notes:    called by DPMS.EXE and EMM386.EXE
  1437.     this API is only available if AX=12FFh/BX=0EDCh returns successfully;
  1438.       because the request is handled on the initial trap to the memory
  1439.       manager caused by INT instructions, this API must be invoked with
  1440.       an actual INT 2F instruction instead of some simulation such as a
  1441.       far call to the address in the interrupt vector table
  1442. SeeAlso: AX=12FFh/BX=0EDCh,AX=2780h/CL=01h,AX=2780h/CL=02h,AX=2780h/CL=03h
  1443. --------m-2F2780CL05-------------------------
  1444. INT 2F U - Novell DOS 7 - EMM386.EXE - MULTITASKING API - VIRTUAL MACHINES
  1445.     AX = 2780h
  1446.     CL = 05h (module: VM)
  1447.     CH = function
  1448.         00h "F_VMProtInit" internal protected-mode initialization
  1449.         01h "Z_TMLoad" load task manager
  1450.         02h "Z_TMUnload" unload task manager
  1451.         03h    "Z_VMBackSet" send virtual machine to background
  1452.         04h "Z_VMForeSet" send virtual machine to foreground
  1453.         05h "Z_VMSaveEnable" enable saving virtual machine
  1454.         06h "Z-VMSaveDisable" disable saving virtual machine
  1455.         07h "Z_TMInit" intialize task manager
  1456.         08h "Z_TMHotKeyGet" get task manager hotkey
  1457.         09h "Z_TMHitKeyEnable" restart scanning for task manager key
  1458.         0Ah "Z_TMHotKeyDisable" stop scanning for task manager key
  1459.         0Bh "X_ForeGet" get current foreground domain
  1460.         0Ch "F_DMAHandlerEnable" (re)enable DMA address translation
  1461.         0Dh "F_DMAHandlerDisable" disable DMA address translation
  1462.         0Eh "Z_SerialTimeoutGet" set serial port timeout
  1463.         0Fh "Z_ParallelTimeoutSet" set parallel port timeout
  1464.         10h "F_VCPIEntry" domain is entering VCPI mode
  1465.         11h "F_VCPIExit" domain is leaving VCPI mode
  1466.         12h "X_MsgGlobalEnter" enter Global Message Mode
  1467.         13h "X_MsgGlobalDisplay" display global message
  1468.         14h "X_MsgGlobalExit" leave Global Message Mode
  1469.         15h "X_MsgDomEnter" enter Domain Message Mode
  1470.         16h "X_MsgDomDisplay" display domain-specific message
  1471.         17h "X_MsgDomExit" leave Domain Message Mode
  1472.         18h "X_MsgFatalDisplay" display fatal error message
  1473.         19h "Z_SerialBaseSet" set serial port address
  1474.         1Ah "Z_ParallelBaseSet" set parallel port address
  1475.         1Bh "Z_SerialIRQSet" set serial port IRQ
  1476.         1Ch "Z_ParallelIRQSet" set parallel port IRQ
  1477.         1Dh "F_ResetVideo" emergency video system reset
  1478.         1Eh "F_SetMouseIRQ" set which IRQ is used by mouse
  1479.         1Fh "F_CheckNotIdle" check whether system is idle
  1480.         20h "F_GetMouseInfo"
  1481.         21h "Z_SerialOwnerGet" get serial port owner
  1482.         22h "Z_SerialTimeoutGet" get serial port timeout
  1483.         23h "Z_ParallelOwnerGet" get parallel port owner
  1484.         24h "Z_ParallelTimeoutGet" get parallel port timeout
  1485.     ???
  1486. Return: ???
  1487. Notes:    called by DPMS.EXE and EMM386.EXE
  1488.     the handler for this function may be set by one of the subfunctions
  1489.       of AX=2780h/CL=01h; the default handler returns AX=BX=FFFFh and
  1490.       CX=0001h (see #02739)
  1491.     this API is only available if AX=12FFh/BX=0EDCh returns successfully;
  1492.       because the request is handled on the initial trap to the memory
  1493.       manager caused by INT instructions, this API must be invoked with
  1494.       an actual INT 2F instruction instead of some simulation such as a
  1495.       far call to the address in the interrupt vector table
  1496. SeeAlso: AX=12FFh/BX=0EDCh,AX=2780h/CL=01h,AX=2780h/CL=02h,AX=2780h/CL=03h
  1497. --------m-2F2780CL06-------------------------
  1498. INT 2F U - Novell DOS 7 - EMM386.EXE - MULTITASKING API - DPMI SERVICES
  1499.     AX = 2780h
  1500.     CL = 06h
  1501.     CH = function
  1502.         00h "F_InitDPMI" used for internal initialization
  1503.         01h "F_DescAllocLDT" allocate LDT descriptor
  1504.         02h "F_DescFreeLDT" free LDT descriptor
  1505.         03h "F_DescGetLDT" get details on LDT descriptor
  1506.         04h "F_DescSetLDT" set up LDT descriptor
  1507.         05h "F_DescAllocInt21" allocate descriptor for PM INT 21
  1508.         06h "F_WhereIsDPMI" get address of DPMI global data
  1509. Return: ???
  1510. Notes:    called by DPMS.EXE and EMM386.EXE
  1511.     the handler for this function may be set by one of the subfunctions
  1512.       of AX=2780h/CL=01h; the default handler returns AX=BX=FFFFh and
  1513.       CX=0001h (see #02739)
  1514.     this API is only available if AX=12FFh/BX=0EDCh returns successfully;
  1515.       because the request is handled on the initial trap to the memory
  1516.       manager caused by INT instructions, this API must be invoked with
  1517.       an actual INT 2F instruction instead of some simulation such as a
  1518.       far call to the address in the interrupt vector table
  1519. SeeAlso: AX=12FFh/BX=0EDCh,AX=2780h/CL=01h,AX=2780h/CL=02h,AX=2780h/CL=03h
  1520. --------m-2F2780-----------------------------
  1521. INT 2F U - Novell DOS 7 - EMM386.EXE - MULTITASKING API - AVAILABLE FOR APPS
  1522.     AX = 2780h
  1523.     CL = function (07h-0Fh)
  1524.     ???
  1525. Return: ???
  1526. Notes:    called by DPMS.EXE and EMM386.EXE
  1527.     the handlers for each of these functions may be set individually by
  1528.       one of the subfunctions of AX=2780h/CL=01h; the default handlers
  1529.       return with all registers unchanged
  1530.     this API is only available if AX=12FFh/BX=0EDCh returns successfully;
  1531.       because the request is handled on the initial trap to the memory
  1532.       manager caused by INT instructions, this API must be invoked with
  1533.       an actual INT 2F instruction instead of some simulation such as a
  1534.       far call to the address in the interrupt vector table
  1535. SeeAlso: AX=12FFh/BX=0EDCh,AX=2780h/CL=01h,AX=2780h/CL=02h,AX=2780h/CL=03h
  1536. --------T-2F2781-----------------------------
  1537. INT 2F U - Novell DOS 7 TaskMGR - BEGIN CRITICAL SECTION???
  1538.     AX = 2781h
  1539. Return: ???
  1540. SeeAlso: AX=2782h
  1541. --------T-2F2782-----------------------------
  1542. INT 2F U - Novell DOS 7 TaskMGR - END CRITICAL SECTION???
  1543.     AX = 2782h
  1544. Return: ???
  1545. SeeAlso: AX=2781h
  1546. --------m-2F2783-----------------------------
  1547. INT 2F U - Novell DOS 7 - EMM386.EXE - GET ???
  1548.     AX = 2783h
  1549. Return: AX = ???
  1550.     BX = ???
  1551. --------T-2F278F-----------------------------
  1552. INT 2F U - Novell DOS 7 TaskMGR - ??? API
  1553.     AX = 278Fh
  1554.     as for INT 2F/AX=2780h
  1555. Return: as for INT 2F/AX=2780h
  1556. Note:    Novell DOS 7 TaskMGR passes this call through to INT 2F/AX=2780h
  1557.       without changing any other registers
  1558. SeeAlso: AX=2780h/CL=01h,AX=2782h
  1559. --------F-2F2A-------------------------------
  1560. INT 2F - Gammafax DOS Dispatcher INTERFACE
  1561.     AH = 2Ah
  1562. Note:    details not available at this time
  1563. SeeAlso: AX=8000h"FaxBIOS",AX=C000h/BX=444Bh,AX=CB00h,AX=CBDDh,INT 66"BitFax"
  1564. --------V-2F2E00-----------------------------
  1565. INT 2F U - Novell DOS 7 - GRAFTABL - INSTALLATION CHECK
  1566.     AX = 2E00h
  1567. Return: AH = FFh if installed
  1568. Note:    this installation check does not follow the usual format of setting
  1569.       AL to FFh
  1570. SeeAlso: AX=2300h,AH=2Eh"GRAFTABL"
  1571. --------V-2F2E-------------------------------
  1572. INT 2F U - Novell DOS 7 - GRAFTABL - GET FONT TABLE
  1573.     AH = 2Eh
  1574.     AL nonzero
  1575. Return: AH = FFh if installed
  1576.         ES:BX -> graphics data (8 bytes per character from 80h to FFh)
  1577. SeeAlso: AX=2E00h,AH=23h"GRAFTABL"
  1578. --------t-2F3900-----------------------------
  1579. INT 2F - Kingswood TSR INTERFACE - COMPATIBILITY MODE
  1580.     AX = 3900h
  1581. Return: AL = status
  1582.         00h not installed
  1583.         FFh one or more TSRs using this interface is installed
  1584.         DX may be destroyed
  1585. Note:    this function is provided to that the multiplex number will appear used
  1586.       to other programs
  1587. SeeAlso: AH=39h/BL=00h
  1588. --------t-2F39--BL00-------------------------
  1589. INT 2F - Kingswood TSR INTERFACE - INSTALLATION CHECK
  1590.     AH = 39h
  1591.     BL = 00h
  1592.     AL = TSR ID number (01h-FFh, currently only 01h-1Bh used) (see #02742)
  1593. Return: AL = status
  1594.         00h not installed
  1595.         FFh installed
  1596.         DX = segment address of resident module
  1597. Note:    All of Kingswood Software's TSRs use this interface.  Usually the
  1598.       resident module is installed by allocating a block of upper memory,
  1599.       setting its owner ID to 000Ah (used by DOS), and filling the MCB name
  1600.       field with the TSR's name.
  1601. SeeAlso: #02743,AX=3900h,AH=39h/BL=01h
  1602.  
  1603. (Table 02742)
  1604. Values for Kingswood TSR ID number:
  1605.  01h    TSR Windows
  1606.  02h    NOBUSY
  1607.  03h    CD STACK
  1608.  04h    DISK WATCH
  1609.  05h    PUSHBP
  1610.  06h    ALIAS
  1611.  07h    KEYMACRO
  1612.  08h    SLOWDOWN
  1613.  09h    ANSIGRAB
  1614.  0Ah    TEE
  1615.  0Bh    FASTMOUS
  1616.  0Ch    EXTWILD
  1617.  0Dh    BREAKOUT
  1618.  0Eh    STOPDISK
  1619.  0Fh    MEMINIT
  1620.  10h    JANUSEXT
  1621.  11h    CAPS
  1622.  12h    ANSI
  1623.  13h    TRAPPER
  1624.  14h    EATMEM
  1625.  15h    WPJOKE
  1626.  16h    SHOWDOS
  1627.  17h    LOGINTS
  1628.  18h    BLANKVGA
  1629.  19h    SWAPEXEC
  1630.  1Ah    SHELL
  1631.  1Bh    TSRGAMES
  1632.  
  1633. Format of Kingswood TSR modules:
  1634. Offset    Size    Description    (Table 02743)
  1635.  00h  4 BYTEs    signature "FTSR"
  1636.  04h    WORD    segment address of this module (used to check validity)
  1637.  06h    WORD    number of words to skip (usually 0000h if no PSP present)
  1638.  08h  N WORDs    module-defined data that must be at a fixed segment offset
  1639.         (usually only a PSP if file access is required)
  1640.      5N BYTEs    interrupt list (see #02744)
  1641.     BYTE    FFh terminator
  1642.  
  1643. Format of Kingswood TSR interrupt list entry:
  1644. Offset    Size    Description    (Table 02744)
  1645.  00h    BYTE    interrupt number (00h-FEh)
  1646.  01h    WORD    offset within segment of DWORD pointer to previous interrupt
  1647.  03h    WORD    offset within segment of begin of interrupt handler code
  1648. --------t-2F39--BL01-------------------------
  1649. INT 2F - Kingswood TSR INTERFACE - REMOVAL CHECK
  1650.     AH = 39h
  1651.     BL = 01h
  1652.     AL = TSR ID number (01h-FFh) (see #02742)
  1653. Return: AL = status
  1654.         00h not ready to be removed
  1655.         FFh resident module may be removed by deassigning the interrupts
  1656.           hooked by the TSR and deallocating the TSR's memory block
  1657.     AH,BX,CX,DX,ES may be destroyed
  1658. SeeAlso: AX=3900h,AH=39h/BL=00h
  1659. --------t-2F39-------------------------------
  1660. INT 2F - Kingswood TSR INTERFACE - APPLICATION-SPECIFIC FUNCTION CALLS
  1661.     AH = 39h
  1662.     BL = function number (02h-FFh)
  1663.     AL = TSR ID number (01h-FFh) (see #02742)
  1664.     CX,DX,SI,DI,DS,ES may contain parameters
  1665.     BH reserved for use by the function dispatcher
  1666. Return: as appropriate for the called function
  1667. SeeAlso: AX=3900h,AH=39h/BL=00h,AX=3901h/BL=02h
  1668. --------r-2F3901BL02-------------------------
  1669. INT 2F - Kingswood TSR Windows - OPEN WINDOW
  1670.     AX = 3901h
  1671.     BL = 02h
  1672. Return: AX = error code (0000h if successful)
  1673.     SI,DI,DS,ES preserved
  1674. Notes:    opens the next TSR window on top of any others.     Only three
  1675.       TSR windows can be opened at any one time.  The three windows
  1676.       are all 40x11 characters, partly overlapping.
  1677. SeeAlso: AH=39h/BL=00h,AX=3901h/BL=03h,AX=3901h/BL=05h,AX=3901h/BL=06h
  1678. --------r-2F3901BL03-------------------------
  1679. INT 2F - Kingswood TSR Windows - HIDE WINDOWS
  1680.     AX = 3901h
  1681.     BL = 03h
  1682. Return: AX = error code (0000h if successful)
  1683.     SI,DI,DS,ES preserved
  1684. Notes:    Hide any visible TSR windows from view.
  1685. SeeAlso: AH=39h/BL=00h,AX=3901h/BL=02h,AX=3901h/BL=05h
  1686. --------r-2F3901BL04-------------------------
  1687. INT 2F - Kingswood TSR Windows - SHOW WINDOWS
  1688.     AX = 3901h
  1689.     BL = 04h
  1690. Return: AX = error code (0000h if successful)
  1691.     SI,DI,DS,ES preserved
  1692. Notes:    Re-display all TSR windows after a HIDE WINDOWS call.
  1693. SeeAlso: AH=39h/BL=00h,AX=3901h/BL=02h,AX=3901h/BL=03h
  1694. --------r-2F3901BL05-------------------------
  1695. INT 2F - Kingswood TSR Windows - CLOSE WINDOW
  1696.     AX = 3901h
  1697.     BL = 05h
  1698. Return: AX = error code (0000h if successful)
  1699.     SI,DI,DS,ES preserved
  1700. Notes:    Close the last opened TSR window.
  1701. SeeAlso: AH=39h/BL=00h,AX=3901h/BL=02h
  1702. --------r-2F3901BL06-------------------------
  1703. INT 2F - Kingswood TSR Windows - SET WINDOW TITLE
  1704.     AX = 3901h
  1705.     BL = 06h
  1706.     DS:SI -> title string
  1707. Return: AX = error code (0000h if successful)
  1708.     SI,DI,DS,ES preserved
  1709. SeeAlso: AH=39h/BL=00h,AX=3901h/BL=02h
  1710. --------r-2F3901BL07-------------------------
  1711. INT 2F - Kingswood TSR Windows - POSITION CURSOR
  1712.     AX = 3901h
  1713.     BL = 07h
  1714.     CH = Y coordinate (0-10)
  1715.     CL = X coordinate (0-39)
  1716. Return: AX = error code (0000h if successful)
  1717.     SI,DI,DS,ES preserved
  1718. Note:    the hardware cursor is always disabled when a TSR window is opened;
  1719.       this call only sets a text position
  1720. SeeAlso: AH=39h/BL=00h,AX=3901h/BL=08h,AX=3901h/BL=09h
  1721. --------r-2F3901BL08-------------------------
  1722. INT 2F - Kingswood TSR Windows - DISPLAY STRING
  1723.     AX = 3901h
  1724.     BL = 08h
  1725.     DS:SI -> string
  1726. Return: AX = error code (0000h if successful)
  1727.     SI,DI,DS,ES preserved
  1728. Notes:    The text is not clipped.
  1729.     This routine understands Tab, NewLine and Carriage Return
  1730. SeeAlso: AH=39h/BL=00h,AX=3901h/BL=07h
  1731. --------r-2F3901BL09-------------------------
  1732. INT 2F - Kingswood TSR Windows - SCROLL WINDOW
  1733.     AX = 3901h
  1734.     BL = 09h
  1735.     CL = scroll direction: 01h up, FFh down, 00h clear window
  1736. Return: AX = error code (0000h if successful)
  1737.     SI,DI,DS,ES preserved
  1738. SeeAlso: AH=39h/BL=00h,AX=3901h/BL=07h
  1739. --------r-2F3901BL0A-------------------------
  1740. INT 2F - Kingswood TSR Windows - SOUND BEEPER
  1741.     AX = 3901h
  1742.     BL = 0Ah
  1743.     DX = sound divisor, or 0 for silence.
  1744.          (divide 1843200 by required frequency to get value for DX)
  1745.     CL = sound length in 18.2 Hz clock ticks
  1746. Return: AX = error code (0000h if successful)
  1747.     SI,DI,DS,ES preserved
  1748. SeeAlso: AH=39h/BL=00h
  1749. --------r-2F3901BL0B-------------------------
  1750. INT 2F - Kingswood TSR Windows - ADD OR REMOVE USER
  1751.     AX = 3901h
  1752.     BL = 0Bh
  1753.     CL = number of users increment: +1 if adding a new user
  1754.                     -1 if removing a user
  1755. Return: AX = error code (0000h if successful)
  1756.     SI,DI,DS,ES preserved
  1757. Note:    the TSR windows resident module may only be removed when the internal
  1758.       user count is zero
  1759. SeeAlso: AH=39h/BL=00h,AX=3901h/BL=02h
  1760. --------V-2F3912BL03-------------------------
  1761. INT 2F - Kingswood ANSI display driver - SET COMPATIBILITY MODE
  1762.     AX = 3912h
  1763.     BL = 03h
  1764.     CL = new mode (00h fast, FFh BIOS)
  1765. Return: AL = old compatibility mode
  1766.     SI,DI,DS,ES preserved
  1767. SeeAlso: AX=3900h,AX=3912h/BL=04h
  1768. --------V-2F3912BL04-------------------------
  1769. INT 2F - Kingswood ANSI display driver - SET FLAGS
  1770.     AX = 3912h
  1771.     BL = 04h
  1772.     CL = new flags (see #02745)
  1773. Return: AL = old flags
  1774.     SI,DI,DS,ES preserved
  1775. SeeAlso: AX=3900h,AX=3912h/BL=03h
  1776.  
  1777. Bitfields for Kingswood ANSI flags:
  1778. Bit(s)    Description    (Table 02745)
  1779.  0    do not wrap at end of line
  1780.  1    wait for beeps to end before displaying next character
  1781.  2    do not use graphics cursor
  1782. --------W-2F4000-----------------------------
  1783. INT 2F - Windows 3+ (OS/2 2.x???) - GET VIRTUAL DEVICE DRIVER (VDD) CAPABILTIES
  1784.     AX = 4000h
  1785. Return: AL = video virtualization (see #02746)
  1786. Note:    this function is used by display drivers to find out what capabilities
  1787.       exist for the VDD driver and also trigger the VDD driver to call
  1788.       functions 4005h and 4006h.  This function also gives the Video Driver
  1789.       hardware access to the video registers.
  1790.  
  1791. (Table 02746)
  1792. Values for Windows video virtualization:
  1793.  01h    does not virtualize video access
  1794.  02h    virtualizes the video when in text mode
  1795.  03h    virtualizes the video when in text mode or single plane graphics modes
  1796.  04h    virtualizes the video when in text mode, single plane graphics modes,
  1797.       and VGA multiplane modes
  1798.  FFh    virtualizes the video fully
  1799. --------O-2F4001-----------------------------
  1800. INT 2F C - OS/2 compatibility box - SWITCHING DOS TO BACKGROUND
  1801.     AX = 4001h
  1802. Note:    called by OS/2 when the DOS box is about to be placed in the background
  1803.       and the video driver should save any necessary state
  1804. SeeAlso: AX=4002h,AX=4005h
  1805. --------O-2F4002-----------------------------
  1806. INT 2F C - OS/2 compatibility box - SWITCHING DOS TO FOREGROUND
  1807.     AX = 4002h
  1808. Note:    called by OS/2 when the DOS box is about to be placed in the foreground
  1809.       and the video driver should restore the previously-saved state
  1810. SeeAlso: AX=4001h,AX=4006h
  1811. --------W-2F4003-----------------------------
  1812. INT 2F - Windows 3.x - ENTERING VIDEO DRIVER CRITICAL SECTION
  1813.     AX = 4003h
  1814. Note:    This critical section must be exited within 1 second.
  1815. SeeAlso: AX=4004h
  1816. --------W-2F4004-----------------------------
  1817. INT 2F - Windows 3.x - EXITING VIDEO DRIVER CRITICAL SECTION
  1818.     AX = 4004h
  1819. SeeAlso: AX=4003h
  1820. --------W-2F4005-----------------------------
  1821. INT 2F C - Windows 3.x - SWITCHING DOS TO BACKGROUND
  1822.     AX = 4005h
  1823. Note:    called by Windows when the DOS box is about to be placed in the
  1824.       background and the video driver should save any necessary state
  1825.       information (this may be called only in Standard mode)
  1826. SeeAlso: AX=4001h,AX=4006h
  1827. --------W-2F4006-----------------------------
  1828. INT 2F C - Windows 3.x - SWITCHING DOS TO FOREGROUND
  1829.     AX = 4006h
  1830. Note:    called by Windows when the DOS box is about to be placed in the
  1831.       foreground and the video driver should restore any necessary state
  1832.       information (this may be called only in Standard mode)
  1833. SeeAlso: AX=4002h,AX=4005h
  1834. --------W-2F4007-----------------------------
  1835. INT 2F - Windows 3.x - ENABLE VDD TRAPPING OF VIDEO REGISTERS
  1836.     AX = 4007h
  1837. Note:    used by Windows Standard mode
  1838. --------O-2F4010-----------------------------
  1839. INT 2F - OS/2 v2.0+ - INSTALLATION CHECK / GET VERSION
  1840.     AX = 4010h
  1841. Return: AX = 4010h if OS/2 not installed
  1842.     AX = 0000h for OS/2 Warp 3.0
  1843.     BX = OS/2 version if installed
  1844. Note:    OS/2 Warp 3.0
  1845. SeeAlso: INT 21/AH=30h,INT 21/AX=3306h
  1846. --------O-2F4011-----------------------------
  1847. INT 2F - OS/2 - GET VDD API ENTRY POINT
  1848.     AX = 4011h
  1849.     DS:(E)SI -> ASCIZ name of VDD registered with VDHRegisterAPI
  1850. Return: ES:DI -> breakpoint address to call for VDD API, or 0000h:0000h
  1851. Note:    this function may be invoked from either V86 or protected mode, and
  1852.       will return the appropriate address to call for invoking the VDD
  1853.       in that mode
  1854. SeeAlso: AX=1684h"DEVICE API"
  1855. --------V-2F4021-----------------------------
  1856. INT 2F UC - Diamond Stealth64 Video - STLTH64.VXD - ???
  1857.     AX = 4021h
  1858.     ???
  1859. Return: ???
  1860. SeeAlso: AX=4022h,AX=4023h
  1861. --------V-2F4022-----------------------------
  1862. INT 2F UC - Diamond Stealth64 Video - STLTH64.VXD - ???
  1863.     AX = 4022h
  1864.     ???
  1865. Return: ???
  1866. SeeAlso: AX=4021h,AX=4023h
  1867. --------V-2F4023-----------------------------
  1868. INT 2F UC - Diamond Stealth64 Video - STLTH64.VXD - ???
  1869.     AX = 4023h
  1870.     ???
  1871. Return: ???
  1872. SeeAlso: AX=4021h,AX=4022h
  1873. --------V-2F4027-----------------------------
  1874. INT 2F UC - Diamond Stealth64 Video - DMSSTL.DRV - ???
  1875.     AX = 4027h
  1876.     ???
  1877. Return: ???
  1878. Notes:    called when ???
  1879.     a protected-mode handler for this function may be installed with the
  1880.       function RFV_HOOKINT2FHANDLER
  1881. SeeAlso: AX=4021h,AX=4022h
  1882. --------E-2F4040-----------------------------
  1883. INT 2F - PharLap 286|DOS-Extender Lite v2.5 - ???
  1884.     AX = 4040h
  1885. Return: BX:CX -> ???
  1886. --------N-2F4100-----------------------------
  1887. INT 2F - DOS Enhanced LAN Manager 2.0+ MINIPOP/NETPOPUP - INSTALLATION CHECK
  1888.     AX = 4100h
  1889. Return: CF clear if successful
  1890.         AL = FFh
  1891.     CF set on error
  1892.         AX = ???
  1893. Notes:    MINIPOP and NETPOPUP provide a network message popup service
  1894.     LAN Manager enhanced mode adds features beyond the standard redirector
  1895.       file/printer services
  1896. SeeAlso: AX=118Ah,AX=4103h,AX=4104h,AH=42h,AH=4Bh
  1897. --------N-2F4103-----------------------------
  1898. INT 2F - DOS Enhanced LAN Manager 2.0+ MINIPOP/NETPOPUP - ???
  1899.     AX = 4103h
  1900. Return: ???
  1901. SeeAlso: AX=4100h,AX=4104h
  1902. --------N-2F4104-----------------------------
  1903. INT 2F - DOS Enhanced LAN Manager 2.0+ MINIPOP/NETPOPUP - ???
  1904.     AX = 4104h
  1905. Return: ???
  1906. SeeAlso: AX=4100h,AX=4103h
  1907. --------N-2F42-------------------------------
  1908. INT 2F - LAN Manager 2.0 DOS Enhanced MSRV.EXE - MESSENGER SERVICE
  1909.     AH = 42h
  1910.     ???
  1911. Return: ???
  1912. Note:    LAN Manager enhanced mode adds features beyond the standard redirector
  1913.       file/printer services
  1914. SeeAlso: AX=118Ah,AX=4100h,AH=4Bh
  1915. --------m-2F4300-----------------------------
  1916. INT 2F - EXTENDED MEMORY SPECIFICATION (XMS) v2+ - INSTALLATION CHECK
  1917.     AX = 4300h
  1918. Return: AL = 80h XMS driver installed
  1919.     AL <> 80h no driver
  1920. Notes:    XMS gives access to extended memory and noncontiguous/nonEMS memory
  1921.       above 640K
  1922.     this installation check DOES NOT follow the format used by other
  1923.       software
  1924. SeeAlso: AX=4310h,AX=1687h,INT 67/AH=40h,@xxxxh:xxxxh"PMM"
  1925. Index:    installation check;XMS version 2+
  1926. --------m-2F4308-----------------------------
  1927. INT 2F U - HIMEM.SYS v2.77+ - GET A20 HANDLER NUMBER
  1928.     AX = 4308h
  1929. Return: AL = 43h if supported
  1930.         BL = A20 handler number (value of /MACHINE:nn switch)
  1931.         BH = AT A20 switch time (00h medium, 01h fast, 02h slow)
  1932. Note:    if the A20 handler number returned in BL is 00h, an external handler
  1933.       is being used (see AX=4330h)
  1934. SeeAlso: AX=4309h,AX=4330h
  1935. --------m-2F4309-----------------------------
  1936. INT 2F U - HIMEM.SYS v3.09+ - GET XMS HANDLE TABLE
  1937.     AX = 4309h
  1938. Return: AL = 43h if function supported
  1939.         ES:BX -> XMS handle table (see #02747)
  1940. Note:    HIMEM.SYS v3.09 is part of MS-DOS 6.0.
  1941. SeeAlso: AX=4308h
  1942.  
  1943. Format of XMS handle table:
  1944. Offset    Size    Description    (Table 02747)
  1945.  00h    BYTE    ??? (01h in HIMEM.SYS v3.09)
  1946.  01h    BYTE    size of one handle descriptor
  1947.  02h    WORD    number of handles (default = 20h)
  1948.  04h    DWORD    pointer to XMS handle array (see #02748)
  1949. SeeAlso: #02777
  1950.  
  1951. Format of XMS handle descriptor [array]:
  1952. Offset    Size    Description    (Table 02748)
  1953.  00h    BYTE    flag
  1954.         01h=free, 02h=used, 04h=in pool but not associated with any EMB
  1955.  01h    BYTE    lock count (00h=unlocked)
  1956.  02h    DWORD    address of XMS block in KB (shift left by 10 for abs. address)
  1957.  06h    DWORD    size of XMS block in KB
  1958. --------m-2F4310-----------------------------
  1959. INT 2F - EXTENDED MEMORY SPECIFICATION (XMS) v2+ - GET DRIVER ADDRESS
  1960.     AX = 4310h
  1961. Return: ES:BX -> driver entry point (see #02749,#02750,#02753,#02760,#02769,#02774)
  1962. Notes:    HIMEM.SYS v2.77 chains to previous handler if AH is not 00h or 10h
  1963.     HIMEM.SYS requires at least 256 bytes free stack space when calling
  1964.       the driver entry point
  1965. SeeAlso: AX=4300h,AX=4310h"Cloaking",AX=4310h"Netroom",AX=4310h"XMZ"
  1966.  
  1967. Format of XMS driver entry point:
  1968. Offset    Size    Description    (Table 02749)
  1969.  00h  5 BYTEs    jump to actual handler
  1970.         either short jump (EBh XXh) followed by three NOPs or
  1971.           far jump (EAh XXXX:XXXX) to a program which has hooked itself
  1972.           into the XMS driver chain
  1973. Note:    to hook into the XMS driver chain, a program should follow the chain of
  1974.       far jumps until it reaches the short jump of the driver at the end
  1975.       of the chain; this short jump is to be replaced with a far jump to
  1976.       the new handler's entry point, which should contain a short jump
  1977.       followed by three NOPs.  The new handler must return to the address
  1978.       pointed at by the short jump which was overwritten.  Using this
  1979.       method, the new handler becomes the first to see every XMS request.
  1980.  
  1981. (Table 02750)
  1982. Call the XMS driver "Get XMS version number" function with:
  1983.     AH = 00h
  1984. Return: AX = XMS version (in BCD, AH=major, AL=minor)
  1985.     BX = internal revision number (in BCD for HIMEM.SYS)
  1986.     DX = High Memory Area (HMA) state
  1987.         0001h HMA (1M to 1M + 64K) exists
  1988.         0000h HMA does not exist
  1989. SeeAlso: #02751,#02752,#02757,#02758,#02764
  1990.  
  1991. (Table 02751)
  1992. Call the XMS driver "Request High Memory Area" function with:
  1993.     AH = 01h
  1994.     DX = memory in bytes (for TSR or device drivers)
  1995.         FFFFh if application program
  1996. Return: AX = status
  1997.         0001h success
  1998.         0000h failure
  1999.         BL = error code (80h,81h,90h,91h,92h) (see #02775)
  2000. Note:    HIMEM.SYS will fail function 01h with error code 91h if AL=40h and
  2001.       DX=KB free extended memory returned by last call of function 08h
  2002. SeeAlso: #02752,#02784
  2003.  
  2004. (Table 02752)
  2005. Call the XMS driver "Release High Memory Area" function with:
  2006.     AH = 02h
  2007. Return: AX = status
  2008.         0001h success
  2009.         0000h failure
  2010.         BL = error code (80h,81h,90h,93h) (see #02775)
  2011. SeeAlso: #02751
  2012.  
  2013. (Table 02753)
  2014. Call the XMS driver "Global enable A20, for using the HMA" function with:
  2015.     AH = 03h
  2016. Return: AX = status
  2017.         0001h success
  2018.         0000h failure
  2019.         BL = error code (80h,81h,82h) (see #02775)
  2020. SeeAlso: #02754,#02755,MSR 00001000h
  2021.  
  2022. (Table 02754)
  2023. Call the XMS driver "Global disable A20" function with:
  2024.     AH = 04h
  2025. Return: AX = status
  2026.         0001h success
  2027.         0000h failure
  2028.         BL = error code (80h,81h,82h,94h) (see #02775)
  2029. SeeAlso: #02753,#02756,MSR 00001000h
  2030.  
  2031. (Table 02755)
  2032. Call the XMS driver "Local enable A20" function with:
  2033.     AH = 05h
  2034. Return: AX = status
  2035.         0001h success
  2036.         0000h failure
  2037.         BL = error code (80h,81h,82h) (see #02775)
  2038. Note:    this function is used for direct access to extended memory
  2039. SeeAlso: #02753,#02756
  2040.  
  2041. (Table 02756)
  2042. Call the XMS driver "Local disable A20" function with:
  2043.     AH = 06h
  2044. Return: AX = status
  2045.         0001h success
  2046.         0000h failure
  2047.         BL = error code (80h,81h,82h,94h) (see #02775)
  2048. SeeAlso: #02754,#02755
  2049.  
  2050. (Table 02757)
  2051. Call the XMS driver "Query A20 state" function with:
  2052.     AH = 07h
  2053. Return: AX = status
  2054.         0001h enabled
  2055.         0000h disabled
  2056.         BL = error code (00h,80h,81h) (see #02775)
  2057. SeeAlso: #02750,#02758
  2058.  
  2059. (Table 02758)
  2060. Call the XMS driver "Query free extended memory" function with:
  2061.     AH = 08h
  2062.     BL = 00h (some implementations leave BL unchanged on success)
  2063. Return: AX = size of largest extended memory block in KB
  2064.     DX = total extended memory in KB
  2065.     BL = error code (00h,80h,81h,A0h) (see #02775)
  2066. Note:    this function does not include the HMA in the returned memory sizes
  2067. SeeAlso: #02750,#02757,#02759,#02771
  2068.  
  2069. (Table 02759)
  2070. Call the XMS driver "Allocate extended memory block" function with:
  2071.     AH = 09h
  2072.     DX = Kbytes needed
  2073. Return: AX = status
  2074.         0001h success
  2075.         DX = handle for memory block
  2076.         0000h failure
  2077.         BL = error code (80h,81h,A0h) (see #02775)
  2078. SeeAlso: #02758,#02761,#02764,#02765,#02766,#02772
  2079.  
  2080. (Table 02760)
  2081. Call the XMS driver "Free extended memory block" function with:
  2082.     AH = 0Ah
  2083.     DX = handle of block to free
  2084. Return: AX = status
  2085.         0001h success
  2086.         0000h failure
  2087.         BL = error code (80h,81h,A2h,ABh) (see #02775)
  2088. SeeAlso: #02759,#02772
  2089.  
  2090. (Table 02761)
  2091. Call the XMS driver "Move extended memory block" function with:
  2092.     AH = 0Bh
  2093.     DS:SI -> EMM structure (see #02776)
  2094. Return: AX = status
  2095.         0001h success
  2096.         0000h failure
  2097.         BL = error code (80h-82h,A3h-A9h) (see #02775)
  2098. Note:    if either handle in the EMM structure is 0000h, the corresponding
  2099.       offset is considered to be an absolute segment:offset address in
  2100.       directly addressable memory
  2101. SeeAlso: #02759,#02762
  2102.  
  2103. (Table 02762)
  2104. Call the XMS driver "Lock extended memory block" function with:
  2105.     AH = 0Ch
  2106.     DX = handle of block to lock
  2107. Return: AX = status
  2108.         0001h success
  2109.         DX:BX = 32-bit physical address of locked block
  2110.         0000h failure
  2111.         BL = error code (80h,81h,A2h,ACh,ADh) (see #02775)
  2112. Note:    MS Windows 3.x rejects this function for handles allocated after
  2113.       Windows started
  2114. SeeAlso: #02759,#02761,#02763,#02777
  2115.  
  2116. (Table 02763)
  2117. Call the XMS driver "Unlock extended memory block" function with:
  2118.     AH = 0Dh
  2119.     DX = handle of block to unlock
  2120. Return: AX = status
  2121.         0001h success
  2122.         0000h failure
  2123.         BL = error code (80h,81h,A2h,AAh) (see #02775)
  2124. SeeAlso: #02762
  2125.  
  2126. (Table 02764)
  2127. Call the XMS driver "Get handle information" function with:
  2128.     AH = 0Eh
  2129.     DX = handle for which to get info
  2130. Return: AX = status
  2131.         0001h success
  2132.         BH = block's lock count
  2133.         BL = number of free handles left
  2134.         DX = block size in KB
  2135.         0000h failure
  2136.         BL = error code (80h,81h,A2h) (see #02775)
  2137. BUG:    MS Windows 3.10 acts as though unallocated handles are in use
  2138. Note:    MS Windows 3.00 has problems with this call
  2139. SeeAlso: #02750,#02759,#02773
  2140.  
  2141. (Table 02765)
  2142. Call the XMS driver "Reallocate extended memory block" function with:
  2143.     AH = 0Fh
  2144.     DX = handle of block
  2145.     BX = new size of block in KB
  2146. Return: AX = status
  2147.         0001h success
  2148.         0000h failure
  2149.         BL = error code (80h,81h,A0h-A2h,ABh) (see #02775)
  2150. SeeAlso: #02759,#02768
  2151.  
  2152. (Table 02766)
  2153. Call the XMS driver "Request upper memory block" function with:
  2154.     AH = 10h
  2155.     DX = size of block in paragraphs
  2156. Return: AX = status
  2157.         0001h success
  2158.         BX = segment address of UMB
  2159.         DX = actual size of block
  2160.         0000h failure
  2161.         BL = error code (80h,B0h,B1h) (see #02775)
  2162.         DX = largest available block
  2163. Notes:    Upper Memory consists of non-EMS memory between 640K and 1024K
  2164.     the XMS driver need not implement functions 10h through 12h to be
  2165.       considered compliant with the standard
  2166.     under DOS 5+, if CONFIG.SYS contains the line DOS=UMB, then no upper
  2167.       memory blocks will be available for allocation because all blocks
  2168.       have been grabbed by MS-DOS while booting
  2169. SeeAlso: #02759,#02767,#02785,INT 21/AH=58h"UMB"
  2170.  
  2171. (Table 02767)
  2172. Call the XMS driver "Release upper memory block" function with:
  2173.     AH = 11h
  2174.     DX = segment address of UMB to release
  2175. Return: AX = status
  2176.         0001h success
  2177.         0000h failure
  2178.         BL = error code (80h,B2h) (see #02775)
  2179. Note:    the XMS driver need not implement functions 10h through 12h to be
  2180.       considered compliant with the standard
  2181. SeeAlso: #02760,#02766,#02768
  2182.  
  2183. (Table 02768)
  2184. Call the XMS v3.0+ driver "Reallocate upper memory block" function with:
  2185.     AH = 12h
  2186.     DX = segment address of UMB to resize
  2187.     BX = new size of block in paragraphs
  2188. Return: AX = status
  2189.         0001h success
  2190.         0000h failure
  2191.         BL = error code (80h,B0h,B2h) (see #02775)
  2192.         DX = maximum available size (RM386)
  2193. Note:    the XMS driver need not implement functions 10h through 12h to be
  2194.       considered compliant with the standard
  2195. SeeAlso: #02765,#02766,#02767,#02783
  2196.  
  2197. (Table 02769)
  2198. Call the QEMM v5.11 "???" function with:
  2199.     AH = 34h  (QEMM 5.11 only, undocumented)
  2200.     ???
  2201. Return: ???
  2202. SeeAlso: #02770
  2203.  
  2204. (Table 02770)
  2205. Call the QEMM v5.11 "???" function with:
  2206.     AH = 44h  (QEMM 5.11 only, undocumented)
  2207.     ???
  2208. Return: ???
  2209. SeeAlso: #02769,#02783
  2210.  
  2211. (Table 02771)
  2212. Call the XMS v3.0 driver "Query free extended memory" function with:
  2213.     AH = 88h
  2214. Return: EAX = largest block of extended memory, in KB
  2215.     BL = status (00h,80h,81h,A0h) (see #02775)
  2216.     ECX = physical address of highest byte of memory
  2217.         (valid even on error codes 81h and A0h)
  2218.     EDX = total Kbytes of extended memory (0 if status A0h)
  2219. BUG:    HIMEM v3.03-3.07 crash on an 80286 machine if any of the 8Xh functions
  2220.       are called
  2221. SeeAlso: #02758,#02772
  2222.  
  2223. (Table 02772)
  2224. Call the XMS v3.0 driver "Allocate any extended memory" function with:
  2225.     AH = 89h
  2226.     EDX = Kbytes needed
  2227. Return: AX = status
  2228.         0001h success
  2229.         DX = handle for allocated block (free with AH=0Ah) (see #02760)
  2230.         0000h failure
  2231.         BL = status (80h,81h,A0h,A1h,A2h) (see #02775)
  2232. SeeAlso: #02759,#02771
  2233.  
  2234. (Table 02773)
  2235. Call the XMS v3.0 driver "Get extended EMB handle information" function with:
  2236.     AH = 8Eh
  2237.     DX = handle
  2238. Return: AX = status
  2239.         0001h success
  2240.         BH = block's lock count
  2241.         CX = number of free handles left
  2242.         EDX = block size in KB
  2243.         0000h failure
  2244.         BL = status (80h,81h,A2h) (see #02775)
  2245. BUG:    MS-DOS 6.0 HIMEM.SYS leaves CX unchanged
  2246. SeeAlso: #02764,#02772,#02774
  2247.  
  2248. (Table 02774)
  2249. Call the XMS v3.0 driver "Reallocate any extended memory block" function with:
  2250.     AH = 8Fh
  2251.     DX = unlocked memory block handle
  2252.     EBX = new size in KB
  2253. Return: AX = status
  2254.         0001h success
  2255.         0000h failure
  2256.         BL = status (80h,81h,A0h-A2h,ABh) (see #02775)
  2257. BUG:    HIMEM v3.03-3.07 crash on an 80286 machine if any of the 8Xh functions
  2258.       are called
  2259. SeeAlso: #02765,#02773
  2260.  
  2261. (Table 02775)
  2262. Values for XMS error code returned in BL:
  2263.  00h    successful
  2264.  80h    function not implemented
  2265.  81h    Vdisk was detected
  2266.  82h    an A20 error occurred
  2267.  8Eh    a general driver error
  2268.  8Fh    unrecoverable driver error
  2269.  90h    HMA does not exist or is not managed by XMS provider
  2270.  91h    HMA is already in use
  2271.  92h    DX is less than the /HMAMIN= parameter
  2272.  93h    HMA is not allocated
  2273.  94h    A20 line still enabled
  2274.  A0h    all extended memory is allocated
  2275.  A1h    all available extended memory handles are allocated
  2276.  A2h    invalid handle
  2277.  A3h    source handle is invalid
  2278.  A4h    source offset is invalid
  2279.  A5h    destination handle is invalid
  2280.  A6h    destination offset is invalid
  2281.  A7h    length is invalid
  2282.  A8h    move has an invalid overlap
  2283.  A9h    parity error occurred
  2284.  AAh    block is not locked
  2285.  ABh    block is locked
  2286.  ACh    block lock count overflowed
  2287.  ADh    lock failed
  2288.  B0h    only a smaller UMB is available
  2289.  B1h    no UMB's are available
  2290.  B2h    UMB segment number is invalid
  2291.  
  2292. Format of EMM structure:
  2293. Offset    Size    Description    (Table 02776)
  2294.  00h    DWORD    number of bytes to move (must be even)
  2295.  04h    WORD    source handle
  2296.  06h    DWORD    offset into source block
  2297.  0Ah    WORD    destination handle
  2298.  0Ch    DWORD    offset into destination block
  2299. Notes:    if source and destination overlap, only forward moves (source base
  2300.       less than destination base) are guaranteed to work properly
  2301.     if either handle is zero, the corresponding offset is interpreted
  2302.       as a real-mode address referring to memory directly addressable
  2303.       by the processor
  2304.  
  2305. Format of XMS handle info [array]:
  2306. Offset    Size    Description    (Table 02777)
  2307.  00h    BYTE    handle
  2308.  01h    BYTE    lock count
  2309.  02h    DWORD    handle size
  2310.  06h    DWORD    handle physical address (only valid if lock count nonzero)
  2311. SeeAlso: #02747,#02762
  2312. --------m-2F4310-----------------------------
  2313. INT 2F - Cloaking - REAL-MODE API
  2314.     AX = 4310h
  2315. Return: ES:BX -> driver entry point (see #02749,#02778,#02779,#02780,#02781)
  2316. SeeAlso: AX=4310h"XMS"
  2317.  
  2318. (Table 02778)
  2319. Call the Cloaking v1.01 "Client Registration" function with:
  2320.     AH = 7Eh
  2321.     BX = subfunction
  2322.         0000h get client registration count
  2323.         0001h get client registration structures
  2324.         ES:DI -> buffer for registration structures
  2325. Return: AX = status
  2326.         0000h failed
  2327.         0001h successful
  2328.         ---subfunction 00h---
  2329.         BX = size of client structure in bytes
  2330.         CX = number of clients installed
  2331.         ---subfunction 01h---
  2332.         ES:DI buffer filled
  2333. SeeAlso: #02779,#02781,INT 2C/AX=0033h
  2334.  
  2335. (Table 02779)
  2336. Call the Cloaking v1.01 "Verify Cloaking Host" function with:
  2337.     AH = 7Fh
  2338. Return: AX = status
  2339.         0000h failed
  2340.         0001h (successful) if installed
  2341.         BX = version (0101h for v1.01)
  2342.         CX = flags
  2343.             bit 0: host is VCPI-based
  2344.         DS:DX -> ASCIZ Cloaking host signature
  2345.             "CLOAKING.EXE"0, followed by a far-call entry point to
  2346.               uninstall host (see #02780) in Helix's CLOAKING.EXE
  2347. SeeAlso: #02778,#02781
  2348. Index:    installation check;Cloaking host|installation check;CLOAKING.EXE
  2349.  
  2350. (Table 02780)
  2351. Call the CLOAKING.EXE "Uninstall Host" function with:
  2352. Return: AX = 4F4Bh ('OK') if successfully uninstalled protected-mode code
  2353.  
  2354. (Table 02781)
  2355. Call the Cloaking "Start Protected-Mode Client" function with:
  2356.     AH = 82h
  2357.     DX = XMS handle of locked block containing protected-mode code
  2358.     CL = code size (00h 16-bit, else 32-bit)
  2359.     ESI, EDI = parameters to pass to protected-mode code
  2360. Return: AX = status
  2361.         nonzero success
  2362.         0000h failed
  2363.         BL = error code (A2h,B0h) (see #02775)
  2364. Notes:    this function calls a user initialization function at offset 0 in
  2365.       the XMS memory block (see #02782)
  2366.     supported by Helix's RM386 v6.00 and Helix's CLOAKING.EXE
  2367. SeeAlso: #02778,#02779
  2368.  
  2369. (Table 02782)
  2370. Values user initialization function is called with:
  2371.     EBX = physical address of block's start
  2372.     ESI = user data from function 82h call
  2373.     EDI = user data from function 82h call
  2374.     CS = code selector for XMS block at EBX (16-bit or 32-bit)
  2375.     DS = data selector for XMS block, starting at EBX
  2376.     ES = selector for V86 memory access to full real-mode 1088K
  2377.     GS = selector for full 4G flat address space
  2378.     SS:ESP -> stack provided by host
  2379. Return: via 32-bit FAR return
  2380. Note:    the initialization function may call any protected-mode Cloaking
  2381.       service; it should store the values of DS, ES, and GS for future
  2382.       reference
  2383. --------m-2F4310-----------------------------
  2384. INT 2F - Helix Netroom RM386 v6.00 - XMS EXTENSIONS
  2385.     AX = 4310h
  2386. Return: ES:BX -> driver entry point (see #02783,#02784,#02785,#02786)
  2387. Notes:    HIMEM.SYS v2.77 chains to previous handler if AH is not 00h or 10h
  2388.     HIMEM.SYS requires at least 256 bytes free stack space when calling
  2389.       the driver entry point
  2390. SeeAlso: AX=4300h,AX=4310h"XMS",AX=4310h"Cloaking"
  2391.  
  2392. (Table 02783)
  2393. Call the Netroom RM386 v6.00 "Reallocate upper memory block" function with:
  2394.     AH = 80h
  2395.     DX = segment address of UMB to resize
  2396.     BX = new size of block in paragraphs
  2397. Return: AX = status
  2398.         0001h success
  2399.         0000h failure
  2400.         BL = error code (80h,B0h,B2h) (see #02775)
  2401.         DX = maximum available size
  2402. Note:    this function is identical to function 12h
  2403. SeeAlso: #02768,#02784
  2404.  
  2405. (Table 02784)
  2406. Call the Netroom RM386 v6.00 "re-enable HMA allocation" function with:
  2407.     AH = 81h
  2408. Return: AX = 0001h (success)
  2409. SeeAlso: #02751,#02783,#02785
  2410.  
  2411. (Table 02785)
  2412. Call the Netroom RM386 v6.00 "Create new UMB entry" function with:
  2413.     AH = 83h
  2414.     BX = segment of high-memory block
  2415.     DX = first page of start of block
  2416.     CX = number of consecutive pages in block
  2417.     DI = start of UMB in block
  2418. Return: AX = 0001h (success)
  2419.     DI = segment of first high-DOS block
  2420. Note:    the new UMB is not linked into the high-memory chain
  2421. SeeAlso: #02766,#02784,#02786
  2422.  
  2423. (Table 02786)
  2424. Call the Netroom RM386 v6.00 "Get all XMS handles info" function with:
  2425.     AH = 84h
  2426.     CX = size of buffer for handle info
  2427.     ES:DI -> buffer for handle info (see #02777)
  2428. Return: AX = 0001h (success)
  2429.     DX = current number of allocated XMS handles
  2430. SeeAlso: #02785,#02771
  2431. --------m-2F4310-----------------------------
  2432. INT 2F - NEC PC-9800 - XMZ - PRIVATE API
  2433.     AX = 4310h
  2434. Return: ES:BX -> driver entry point (see #02787,#02788)
  2435. Program: XMZ is an XMS 2.x-compatible driver for the NEC PC-98 series written
  2436.       by ZOBplus Hayami and available at
  2437.       ftp:/ftp.tohoku.ac.jp/pub/msdos/Memory/xmz/
  2438. SeeAlso: AX=4300h,AX=4310h"XMS"
  2439.  
  2440. (Table 02787)
  2441. Call XMZ v1.02 "Get HMA Information" function with:
  2442.     AH = FFh  (XMZ only)
  2443.     AL = 01h
  2444. Return: AX = 1 on success
  2445.     DX = minimum HMA allocation size (/HMAMIN=)
  2446.     BX = actual size of HMA allocation, if in use (i.e. the value in DX
  2447.           when XMS function 1 was called)
  2448. SeeAlso: #02788
  2449.  
  2450. (Table 02788)
  2451. Call XMZ v1.02 "Get EMB Handle Information" function with:
  2452.     AH = FFh  (XMZ only)
  2453.     AL = 02h
  2454. Return: AX = 1 on success
  2455.     DX = number of EMB handles configured (/NUMHANDLES=)
  2456.     BX = offset in XMZ's segment of the handle table (use segment of
  2457.           entry point) (see #02789)
  2458. SeeAlso: #02787
  2459.  
  2460. Format of XMZ v1.02 EMB Handle structure:
  2461. Offset    Size    Description    (Table 02789)
  2462.  00h    BYTE    flag byte
  2463.         04h unused handle slot
  2464.         02h in-use handle slot
  2465.         01h handle slot that represents a free block
  2466.  01h    BYTE    lock count
  2467.  02h    WORD    block start address (1K increments)
  2468.  04h    WORD    block length (1K increments)
  2469. SeeAlso: #02788
  2470. --------m-2F4320-----------------------------
  2471. INT 2F U - HIMEM.SYS - Mach 20 SUPPORT
  2472.     AX = 4320h
  2473.     ???
  2474. Return: ???
  2475. --------m-2F4330-----------------------------
  2476. INT 2F CU - HIMEM.SYS v2.77+ - GET EXTERNAL A20 HANDLER ADDRESS
  2477.     AX = 4330h
  2478. Return: AL = 80h if external A20 handler provided
  2479.         ES:BX -> external A20 handler (see #02790)
  2480.         CL = A20 detection support
  2481.         00h handler is unable to report A20 state
  2482.         01h handler supports function 0002h to report A20 state
  2483. Note:    HIMEM.SYS calls this function to allow an external program to provide
  2484.       an A20 handler (i.e. to support a machine not supported by HIMEM
  2485.       itself)
  2486. SeeAlso: AX=4308h,AX=4310h
  2487.  
  2488. (Table 02790)
  2489. Call parameters for external A20 handler are:
  2490.     AX = function
  2491.         0000h disable A20
  2492.         0001h enable A20
  2493.         0002h get A20 state
  2494. Return: AX = status (functions 0000h and 0001h)
  2495.         0000h failure
  2496.         0001h successful
  2497.     AX = A20 state (function 0002h)
  2498.         0000h disabled
  2499.         0001h enabled
  2500. Note:    HIMEM.SYS only calls function 0002h if the returned CL indicated that
  2501.       the handler supports the call
  2502. ----------2F43D6-----------------------------
  2503. INT 2F - Multiplex - ???
  2504.     AX = 43D6h
  2505. Note:    Central Point's CPBACKUP v9 calls this function with CX=07FFh and
  2506.       DX=80D3h at startup
  2507. --------E-2F43E0BX0000-----------------------
  2508. INT 2F - DOS Protected Mode Services (DPMS) v1.0 - INSTALLATION CHECK
  2509.     AX = 43E0h
  2510.     BX = 0000h
  2511.     CX = 4450h ('DP')
  2512.     DX = 4D53h ('MS')
  2513. Return: AX = 0000h if installed
  2514.         CF clear
  2515.         ES:DI -> server structure (see #02791)
  2516.         ES:BX -> registration structure (pre-NWDOS 7 beta spec) (see #02793)
  2517. Note:    the DPMS 1.0 server included with the original release of Novell DOS
  2518.       7.0 supports both the beta and 1.0 specification, setting ES:BX even
  2519.       if CX and DX are not as specified on entry (since the beta
  2520.       specification did not use those registers).  However, the DPMS 1.1
  2521.       server included with the March 1994 update does not support the beta
  2522.       specification
  2523. SeeAlso: AX=43E1h,AX=43E2h,AX=43E3h,INT 2F/AX=1687h
  2524. Index:    signature strings;DPMS
  2525.  
  2526. Format of DPMS 1.0 server structure:
  2527. Offset    Size    Description    (Table 02791)
  2528.  00h  4 BYTEs    signature string "DPMS"
  2529.  04h  2 BYTEs    DPMS version (major,minor)
  2530.  06h  8 BYTEs    blank-padded server OEM name
  2531.  0Eh  2 BYTEs    OEM server version (major,minor)
  2532.  10h    WORD    DPMS flags (see #02792)
  2533.  12h    BYTE    CPU type
  2534.         (02h = 286, 03h = 386 or higher, higher values allowed)
  2535.  
  2536. Bitfields for DPMS flags:
  2537. Bit(s)    Description    (Table 02792)
  2538.  0    fast processor reset available (286 only)
  2539.  1    DPMS server is enabled
  2540.  2    memory is remapped
  2541.  3-15    reserved (undefined)
  2542.  
  2543. Format of beta DPMS registration structure:
  2544. Offset    Size    Description    (Table 02793)
  2545.  00h    DWORD    real-mode API entry point (see #02795)
  2546.  04h    DWORD    16-bit protected-mode API entry point (see #02795)
  2547.  08h  8 BYTEs    reserved (0)
  2548.  10h  8 BYTEs    blank-padded server OEM name
  2549.  18h    WORD    flags
  2550.         bit 0: fast processor reset available (286 only)
  2551.         bits 1-15 reserved (undefined)
  2552.  1Ah  2 BYTEs    DPMS version (major,minor)
  2553.  1Ch    BYTE    CPU type (02h = 286, 03h = 386 or higher)
  2554. --------m-2F43E1-----------------------------
  2555. INT 2F - DOS Protected Mode Services (DPMS) v1.0 - REGISTER CLIENT
  2556.     AX = 43E1h
  2557.     CX = required protected-mode stack size in bytes
  2558.     ES:DI -> DPMS client interface structure (see #02794)
  2559. Return: AX = 0000h if supported
  2560.        CF clear
  2561.        ES:DI buffer filled with API entry point code from offset 0Ah
  2562. Note:    the client is allowed to copy the returned API code to any location in
  2563.       memory, and need not keep the three code fields together
  2564. SeeAlso: AX=43E0h,AX=43E2h,AX=43E3h
  2565.  
  2566. Format of DPMS client interface structure:
  2567. Offset    Size    Description    (Table 02794)
  2568.  00h    WORD    0000h (structure version / flags)
  2569.  02h  8 BYTEs    blank-padded client name
  2570.  0Ah  7 BYTEs    real/virtual-86 mode API code (see #02795)
  2571.  11h    BYTE    space for return instruction
  2572.         set to C3h for near return, CBh for far return
  2573.  12h  7 BYTEs    16-bit protected-mode API code (see #02795)
  2574.  19h    BYTE    space for return instruction
  2575.         set to C3h for near return, CBh for far return
  2576.  1Ah  9 BYTEs    32-bit protected-mode API code (see #02795)
  2577.  23h    BYTE    space for return instruction
  2578.         set to C3h for near return, CBh for far return
  2579. Note:    the DPMS server fills the return opcode bytes with zeros and DPMS
  2580.       requests will thus crash the system unless the application
  2581.       explicitly sets them (some early versions set them to C3h by
  2582.       default, but one should not rely on that)
  2583.  
  2584. (Table 02795)
  2585. Call DPMS entry point with:
  2586.     AX = 0000h unregister client from server
  2587.  ---control transfer functions---
  2588.     AX = 0100h call protected-mode procedure
  2589.         CX = number of words of stack to copy
  2590.         ES:(E)DI -> callup/down register structure (see #02797)
  2591.         Return: CF clear if successful
  2592.             CF set on error
  2593.                 AX = error code (see #02796)
  2594.     AX = 0101h call real-mode procedure (RETF return)
  2595.         CX = number of words of stack to copy
  2596.         ES:(E)DI -> callup/down register structure (see #02797)
  2597.         Return: CF clear if successful
  2598.             CF set on error
  2599.                 AX = error code (see #02796)
  2600.     AX = 0102h call real-mode procedure (IRET return)
  2601.         CX = number of words of stack to copy
  2602.         ES:(E)DI -> callup/down register structure (see #02797)
  2603.         Return: CF clear if successful
  2604.             CF set on error
  2605.                 AX = error code (see #02796)
  2606.     AX = 0103h call real-mode interrupt handler
  2607.         BL = interrupt number
  2608.         CX = number of words of stack to copy
  2609.         ES:(E)DI -> callup/down register structure (see #02797)
  2610.         Return: CF clear if successful
  2611.             CF set on error
  2612.                 AX = error code (see #02796)
  2613.     AX = 0104h register default protected mode procedure
  2614.         ES:(E)DI -> default register structure (see #02798)
  2615.         Return: CF clear if successful
  2616.             CF set on error
  2617.                 AX = error code (see #02796)
  2618.     AX = 0105h register default real-mode procedure (RETF return)
  2619.         ES:(E)DI -> default register structure (see #02798)
  2620.         Return: CF clear if successful
  2621.             CF set on error
  2622.                 AX = error code (see #02796)
  2623.         Note:    the procedure will be called from 16-bit prot. mode
  2624.     AX = 0106h register default real-mode procedure (IRET return)
  2625.         ES:(E)DI -> default register structure (see #02798)
  2626.         Return: CF clear if successful
  2627.             CF set on error
  2628.                 AX = error code (see #02796)
  2629.         Note:    the procedure will be called from 16-bit prot. mode
  2630.     AX = 0107h register default real-mode interrupt handler
  2631.         BL = interrupt number
  2632.         ES:(E)DI -> default register structure (see #02798)
  2633.         Return: CF clear if successful
  2634.             CF set on error
  2635.                 AX = error code (see #02796)
  2636.         Note:    the handler will be called from 16-bit protected mode
  2637.     AX = 0108h register default real-mode procedure (RETF return)
  2638.         ES:(E)DI -> default register structure (see #02798)
  2639.         Return: CF clear if successful
  2640.             CF set on error
  2641.                 AX = error code (see #02796)
  2642.         Note:    the procedure will be called from 32-bit prot. mode
  2643.     AX = 0109h register default real-mode procedure (IRET return)
  2644.         ES:(E)DI -> default register structure (see #02798)
  2645.         Return: CF clear if successful
  2646.             CF set on error
  2647.                 AX = error code (see #02796)
  2648.         Note:    the procedure will be called from 32-bit prot. mode
  2649.     AX = 010Ah register default real-mode interrupt handler
  2650.         BL = interrupt number
  2651.         ES:(E)DI -> default register structure (see #02798)
  2652.         Return: CF clear if successful
  2653.             CF set on error
  2654.                 AX = error code (see #02796)
  2655.         Note:    the handler will be called from 32-bit protected mode
  2656.  ---descriptor management---
  2657.     AX = 0200h allocate descriptors
  2658.         CX = number of descriptors to allocate
  2659.         Return: CF clear if successful
  2660.                 AX = selector for first descriptor allocated
  2661.             CF set on error
  2662.                 AX = error code (see #02796)
  2663.     AX = 0201h free a descriptor
  2664.         BX = selector for descriptor
  2665.         Return: CF clear if successful
  2666.             CF set on error
  2667.                 AX = error code (see #02796)
  2668.     AX = 0202h create alias descriptor
  2669.         BX = selector for descriptor to be aliased
  2670.         Return: CF clear if successful
  2671.                 AX = alias descriptor
  2672.             CF set on error
  2673.                 AX = error code (see #02796)
  2674.     AX = 0203h build alias to real-mode segment
  2675.         BX = descriptor
  2676.         CX = real-mode segment
  2677.         Return: CF clear if successful
  2678.             CF set on error
  2679.                 AX = error code (see #02796)
  2680.     AX = 0204h set descriptor base
  2681.         BX = descriptor
  2682.         CX:DX = base address
  2683.         Return: CF clear if successful
  2684.             CF set on error
  2685.                 AX = error code (see #02796)
  2686.     AX = 0205h set descriptor limit
  2687.         BX = descriptor
  2688.         CX = limit
  2689.         Return: CF clear if successful
  2690.             CF set on error
  2691.                 AX = error code (see #02796)
  2692.     AX = 0206h set descriptor type/attribute
  2693.         BX = descriptor
  2694.         CL = type
  2695.         CH = attribute
  2696.         Return: CF clear if successful
  2697.             CF set on error
  2698.                 AX = error code (see #02796)
  2699.     AX = 0207h get descriptor base
  2700.         BX = descriptor
  2701.         Return: CF clear if successful
  2702.                 CX:DX = base address
  2703.             CF set on error
  2704.                 AX = error code (see #02796)
  2705.  ---linear memory functions---
  2706.     AX = 0300h get size of largest free block of memory
  2707.         Return: CF clear if successful
  2708.                 BX:CX = size
  2709.             CF set on error
  2710.                 AX = error code (see #02796)
  2711.     AX = 0301h allocate block of extended memory
  2712.         BX:CX = required size
  2713.         Return: CF clear if successful
  2714.                 BX:CX = base address
  2715.                 SI:DI = handle
  2716.             CF set on error
  2717.                 AX = error code (see #02796)
  2718.     AX = 0302h free block of extended memory
  2719.         SI:DI = handle
  2720.         Return: CF clear if successful
  2721.             CF set on error
  2722.                 AX = error code (see #02796)
  2723.     AX = 0303h map linear memory
  2724.         ES:(E)DI -> DDS (see #02799)
  2725.         Return: CF clear if successful
  2726.                 BX:CX = base address
  2727.                 SI:DI = handle
  2728.             CF set on error
  2729.                 AX = error code (see #02796)
  2730.     AX = 0304h unmap linear memory
  2731.         SI:DI = handle
  2732.         Return: CF clear if successful
  2733.             CF set on error
  2734.                 AX = error code (see #02796)
  2735.     AX = 0305h get page table entries
  2736.         ESI = linear address
  2737.         (E)CX = count
  2738.         ES:(E)DI -> buffer for page table entries
  2739.         Return: CF clear if successful
  2740.                 ES:(E)DI buffer filled
  2741.             CF set on error
  2742.                 AX = error code (see #02796)
  2743.     AX = 0306h set page table entries
  2744.         EBX = linear memory handle
  2745.         ESI = linear address
  2746.         (E)CX = count
  2747.         ES:(E)DI -> buffer containing page table entries
  2748.         Return: CF clear if successful
  2749.             CF set on error
  2750.                 AX = error code (see #02796)
  2751.     AX = 0307h get largest mappable block size
  2752.         Return: CF clear if successful
  2753.                 BX:CX = size
  2754.             CF set on error
  2755.                 AX = error code (see #02796)
  2756.  ---miscellaneous---
  2757.     AX = 0400h relocate segment to extended memory
  2758.         ES:SI = base address
  2759.         CX = limit
  2760.         BL = type
  2761.         BH = attribute
  2762.         DX = selector or 0000h
  2763.         Return: CF clear if successful
  2764.                 AX = selector
  2765.                 BX:CX = new base address
  2766.                 SI:DI = handle
  2767.             CF set on error
  2768.                 AX = error code (see #02796)
  2769. Note:    the beta DPMS specification, which is still supported by the Novell
  2770.       DOS 7.0 DPMS host, only supported functions 0100h-0103h, 0200h-0207h,
  2771.       0300h-0304h, and 0400h
  2772.  
  2773. (Table 02796)
  2774. Values for DPMS error code:
  2775.  8000h    general error
  2776.  8001h    unsupported function
  2777.  8002h    unable to switch to protected mode
  2778.  8004h    no default stack defined
  2779.  8005h    unknown client
  2780.  8010h    resource unavailable
  2781.  8011h    descriptor unavailable
  2782.  8012h    linear memory unavailable
  2783.  8013h    physical memory unavailable
  2784.  8021h    invalid value
  2785.  8022h    invalid selector
  2786.  8023h    invalid handle
  2787.  8025h    invalid linear address
  2788.  
  2789. Format of DPMS callup/down register structure:
  2790. Offset    Size    Description    (Table 02797)
  2791.  00h    DWORD    EDI
  2792.  04h    DWORD    ESI
  2793.  08h    DWORD    EBP
  2794.  0Ch  4 BYTEs    reserved (0) (ESP, may be used by DPMS server)
  2795.  10h    DWORD    EBX
  2796.  14h    DWORD    EDX
  2797.  18h    DWORD    ECX
  2798.  20h    DWORD    EAX
  2799.  24h    DWORD    EIP
  2800.  28h    WORD    CS
  2801.  2Ah  2 BYTEs    reserved (0)
  2802.  2Ch    DWORD    EFLAGS
  2803.  30h    DWORD    ESP
  2804.  34h    WORD    SS
  2805.  36h  2 BYTEs    reserved (0)
  2806.  38h    WORD    ES
  2807.  3Ah  2 BYTEs    reserved (0)
  2808.  3Ch    WORD    DS
  2809.  3Eh  2 BYTEs    reserved (0)
  2810.  40h    WORD    FS
  2811.  42h  2 BYTEs    reserved (0)
  2812.  44h    WORD    GS
  2813.  46h  2 BYTEs    reserved (0)
  2814.  
  2815. Format of DPMS default register structure:
  2816. Offset    Size    Description    (Table 02798)
  2817.  00h    DWORD    EIP
  2818.  04h    WORD    CS
  2819.  06h  2 BYTEs    reserved (0)
  2820.  08h    WORD    number of words to copy from stack to stack
  2821.  0Ah    BYTE    (call) 00h
  2822.         (ret) nonzero if call could not be made
  2823.  0Bh    BYTE    reserved (may be used by some servers)
  2824.  0Ch    DWORD    ESP
  2825.  10h    WORD    SS
  2826.  12h  2 BYTEs    reserved (0)
  2827.  14h    WORD    ES
  2828.  16h  2 BYTEs    reserved (0)
  2829.  18h    WORD    DS
  2830.  1Ah  2 BYTEs    reserved (0)
  2831.  1Ch    WORD    FS
  2832.  1Eh  2 BYTEs    reserved (0)
  2833.  20h    WORD    GS
  2834.  22h  2 BYTEs    reserved (0)
  2835.  24h  9 BYTEs    API entry code (filled in by server)
  2836.  
  2837. Format of DPMS lock DDS:
  2838. Offset    Size    Description    (Table 02799)
  2839.  00h    DWORD    total size in bytes
  2840.  04h    DWORD    offset
  2841.  08h    WORD    segment or selector
  2842.  0Ah    WORD    reserved
  2843.  0Ch    WORD    maximum number of physical blocks structure has space for
  2844.  0Eh    WORD    number of physical blocks listed
  2845.  10h    DWORD    physical address of first block
  2846.  14h    DWORD    size in bytes of first block
  2847.     ...
  2848. --------m-2F43E2-----------------------------
  2849. INT 2F - DOS Protected Mode Services (DPMS) v1.0 - ENABLE/DISABLE DPMS
  2850.     AX = 43E2h
  2851.     BX = new state (0000h disable, 0001h enable)
  2852. Return: AX = 0000h if supported
  2853. Note:    this function should normally be called only by system software
  2854. SeeAlso: AX=43E0h,AX=43E1h,AX=43E3h
  2855. --------m-2F43E3BX0000-----------------------
  2856. INT 2F C - DOS Protected Mode Services (DPMS) v1.0 - DPMS STARTUP BROADCAST
  2857.     AX = 43E3h
  2858.     BX = 0000h
  2859.     CX = 4450h ('DP')
  2860.     DX = 4D53h ('MS')
  2861.     ES:DI -> DPMS server structure (see #02791)
  2862. Return: BX = status
  2863.         bit 0 set if server is not allowed to load (e.g. some resident
  2864.           program is incompatible)
  2865. Note:    this callout is made while the potential server is running as a normal
  2866.       real-mode DOS program, so there are no BIOS/DOS re-entrancy issues
  2867. SeeAlso: AX=43E0h,AX=43E4h
  2868. --------m-2F43E4BX0000-----------------------
  2869. INT 2F C - DOS Protected Mode Services (DPMS) v1.0 - DPMS EXIT BROADCAST
  2870.     AX = 43E4h
  2871.     BX = 0000h
  2872.     CX = 4450h ('DP')
  2873.     DX = 4D53h ('MS')
  2874. Return: BX = status
  2875.         bit 0 set if server is not allowed to unload
  2876. Note:    servers never unload until all clients unregister
  2877. SeeAlso: AX=43E0h,AX=43E3h
  2878. --------E-2F44-------------------------------
  2879. INT 2F U - DOS Extender support???
  2880.     AH = 44h
  2881.     AL = function (at least 0Bh, 15h, 17h)
  2882.     ???
  2883. Return: ???
  2884. Note:    called by Codeview for Windows
  2885. SeeAlso: AH=86h
  2886. --------G-2F4500-----------------------------
  2887. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - INSTALLATION CHECK
  2888.     AX = 4500h
  2889. Return: AL = installation status
  2890.         01h if PROF.COM installed
  2891.         02h if VPROD.386 installed
  2892. SeeAlso: AX=4501h,AX=4502h
  2893. --------G-2F4501-----------------------------
  2894. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - SETUP PROFILER
  2895.     AX = 4501h
  2896.     BX = CSIPS buffer size in KB (first parameter for ProfSetup)
  2897.     CX = output limit in KB (second parameter for ProfSetup)
  2898. Note:    this call is not supported by PROF.COM
  2899. SeeAlso: AX=4502h,AX=4503h
  2900. --------G-2F4502-----------------------------
  2901. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - SET SAMPLING RATE
  2902.     AX = 4502h
  2903.     BL = sampling rate for PROF.COM (0 < BL <= 13)
  2904.         (01h = 8192/s, 04h = 1024/s, 08h = 32/s, 0Dh = 1/s)
  2905.     CX = sampling rate for VPROD.386
  2906. Note:    for PROF.COM, this programs the CMOS clock by setting BL+2 as the
  2907.       low four bits of CMOS register 0Ah.  The interruption rate is
  2908.       1 SHL (15 - BL) per second.
  2909. SeeAlso: AX=4501h,AX=4503h
  2910. --------G-2F4503-----------------------------
  2911. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - START PROFILING
  2912.     AX = 4503h
  2913. Notes:    Profiling is also turned on by the key combinations
  2914.       LeftShift + RightShift + Alt and LeftShift + RightShift + Ctrl
  2915.     for PROF.COM, this call programs the CMOS clock by reading register
  2916.       0Ch, and setting bit 6 of register 0Bh.  It then makes sure that IRQ8
  2917.       is unmasked
  2918. SeeAlso: AX=4504h
  2919. --------G-2F4504-----------------------------
  2920. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - STOP PROFILING
  2921.     AX = 4504h
  2922. Notes:    profiling is also turned off by the key combination
  2923.       LeftShift + RightShift
  2924.     for PROF.COM, this programs the CMOS clock by reading register 0Ch
  2925.       and clearing bit 6 of register 0Bh.  It then masks IRQ8.
  2926. SeeAlso: AX=4503h,AX=4505h,AX=4506h,AX=4507h
  2927. --------G-2F4505-----------------------------
  2928. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - CLEAR PROFILING DATA
  2929.     AX = 4505h
  2930. SeeAlso: AX=4503h,AX=4504h,AX=4506h
  2931. --------G-2F4506-----------------------------
  2932. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - "ProfFlush"
  2933.     AX = 4506h
  2934. SeeAlso: AX=4505h,AX=4507h
  2935. --------G-2F4507-----------------------------
  2936. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - "ProfFinish"
  2937.     AX = 4507h
  2938. Note:    this call is essentially a "ProfStop" (AX=4504h) followed by
  2939.       "ProfFlush" (AX=4506h)
  2940. SeeAlso: AX=4504h,AX=4505h,AX=4506h
  2941. --------G-2F4508-----------------------------
  2942. INT 2F U - Microsoft Profiler (PROF.COM/VPROD.386) - ALTERNATE SEGDEBUG IFACE
  2943.     AX = 4508h
  2944.     BX = ordinal (or 0000h)
  2945.     CX = segment
  2946.     DX = instance (or 0000h)
  2947.     SI = type (or 0000h)
  2948.     ES:DI -> ASCIZ module name
  2949. Notes:    this call is an alternate entry to the profiler's SEGDEBUG
  2950.       interface, but only to function 0, for notifying the profiler of
  2951.       each new segment loaded.  The SHOWHITS utility then examines the
  2952.       profiler's output files (CSIPS.DAT and SEGENTRY.DAT) in conjunction
  2953.       with symbol files to provide information in a useful form.
  2954.     this call does not have a corresponding Windows function
  2955. SeeAlso: AX=4500h
  2956. --------D-2F4601-----------------------------
  2957. INT 2F CU - MS Windows WINOLDAP - SWITCHING ???
  2958.     AX = 4601h
  2959. Return: ???
  2960. Note:    the DOS 5+ kernel intercepts this function and copies the MCB
  2961.        following the caller's PSP memory block into the DOS data segment;
  2962.        in conjunction with AX=4602h, this intercept is used by DOS to
  2963.        avoid corruption of the Windows real-mode heap's end sentinel
  2964. SeeAlso: AX=1700h,AX=4602h
  2965. --------D-2F4602-----------------------------
  2966. INT 2F CU - MS Windows WINOLDAP - SWITCHING ???
  2967.     AX = 4602h
  2968. Return: ???
  2969. Note:    the DOS 5+ kernel intercepts this function and copies the
  2970.       previously-saved MCB from the DOS data segment into the MCB following
  2971.       the caller's PSP memory block; in conjunction with AX=4601h, this
  2972.       intercept is used by DOS to avoid corruption of the Windows real-mode
  2973.       heap's end sentinel
  2974. SeeAlso: AX=1700h,AX=4601h
  2975. --------E-2F46-------------------------------
  2976. INT 2F U - Windows/286 DOS Extender
  2977.     AH = 46h
  2978.     AL = subfunction (03h,04h)
  2979. Return: ???
  2980. Note:    these two subfunctions are called by MS Windows 3.0
  2981. --------v-2F4653CX0002-----------------------
  2982. INT 2F - F-PROT v1.x only - F-LOCK.EXE - API
  2983.     AX = 4653h ('FS')
  2984.     CX = 0002h
  2985.     BX = subfunction
  2986.         0000h  installation check
  2987.         Return: AX = FFFFh
  2988.         0001h  uninstall
  2989.         Return: AX,BX,ES destroyed
  2990.         0002h  disable (v1.08 and below only)
  2991.         0003h  enable (v1.08 and below only)
  2992. Program: F-LOCK is part of the shareware F-PROT virus/trojan protection
  2993.       package by Fridrik Skulason
  2994. SeeAlso: AX=4653h/CX=0003h,AX=CA00h,INT 21/AX=4BEEh
  2995. Index:    installation check;F-LOCK|uninstall;F-LOCK
  2996. --------v-2F4653CX0003-----------------------
  2997. INT 2F - F-PROT v1.x only - F-XCHK.EXE - API
  2998.     AX = 4653h ('FS')
  2999.     CX = 0003h
  3000.     BX = subfunction
  3001.         0000h  installation check
  3002.         Return: AX = FFFFh
  3003.         0001h  uninstall
  3004.         Return: AX,BX,ES destroyed
  3005. Program: F-XCHK is part of the shareware F-PROT virus/trojan protection
  3006.       package by Fridrik Skulason
  3007. SeeAlso: AX=4653h/CX=0002h,AX=4653h/CX=0004h,AX=CA00h
  3008. Index:    installation check;F-XCHK|uninstall;F-XCHK
  3009. --------v-2F4653CX0004-----------------------
  3010. INT 2F - F-PROT v1.x only - F-POPUP.EXE - API
  3011.     AX = 4653h ('FS')
  3012.     CX = 0004h
  3013.     BX = subfunction
  3014.         0000h  installation check
  3015.         Return: AX = FFFFh
  3016.         0001h  uninstall
  3017.         Return: AX,BX,ES destroyed
  3018.         0002h  disable (v1.08 and below only)
  3019.            display message (v1.14+)
  3020.             other registers: ???
  3021.         0003h  enable (v1.08 and below only)
  3022.            display message (v1.14+)
  3023.             other registers: ???
  3024.             Return: AX = key pressed by user
  3025. Program: F-POPUP is part of the shareware F-PROT virus/trojan protection
  3026.       package by Fridrik Skulason
  3027. SeeAlso: AX=4653h/CX=0003h,AX=4653h/CX=0005h,AX=CA00h
  3028. Index:    installation check;F-POPUP|uninstall;F-POPUP
  3029. --------v-2F4653CX0005-----------------------
  3030. INT 2F - F-PROT v1.x only - F-DLOCK.EXE - API
  3031.     AX = 4653h ('FS')
  3032.     CX = 0005h
  3033.     BX = subfunction
  3034.         0000h installation check
  3035.         Return: AX = FFFFh
  3036.         0001h uninstall
  3037.         Return: AX,BX,ES destroyed
  3038. Program: F-DLOCK is part of the shareware F-PROT virus/trojan protection
  3039.       package by Fridrik Skulason
  3040. SeeAlso: AX=4653h/CX=0004h,AX=CA00h
  3041. Index:    installation check;F-DLOCK|uninstall;F-DLOCK
  3042. ----------2F4653CX0007-----------------------
  3043. INT 2F - F-PROT v2.x - VIRSTOP - ENABLE/DISABLE BOOTSECTOR READ CHECKING
  3044.     AX = 4653h ('FS')
  3045.     CX = 0007h
  3046.     BL = new state of bootsector checking (01h = disabled)
  3047. Program: VIRSTOP is the resident virus-checker from Fridrik Skulason's F-PROT
  3048.       virus/trojan protection package
  3049. ----------2F4653CX0008-----------------------
  3050. INT 2F - F-PROT v2.x - ???
  3051.     AX = 4653h ('FS')
  3052.     CX = 0008h
  3053.     ???
  3054. Return: ???
  3055. Note:    called by F-PROT v2.x VIRSTOP
  3056. ----------2F4653CX0008-----------------------
  3057. INT 2F - F-PROT v2.x - VIRSTOP - INSTALLATION CHECK
  3058.     AX = 4653h ('FS')
  3059.     CX = 0008h
  3060. Return: AX = 5346h if installed
  3061.         BX = version???
  3062.         DS:SI -> ASCIZ name of file containing virus signatures
  3063.         DS:DI -> 80-byte buffer for ???
  3064. --------W-2F4680-----------------------------
  3065. INT 2F U - MS Windows v3.0 - INSTALLATION CHECK
  3066.     AX = 4680h
  3067. Return: AX = result
  3068.         0000h MS Windows 3.0 running in real (/R) or standard (/S) mode,
  3069.           or DOS 5 DOSSHELL active
  3070.         nonzero  no Windows, Windows prior to 3.0, or Windows3 in enhanced
  3071.           mode
  3072. Note:    Windows 3.1 finally provides an installation check which works in all
  3073.       modes (see AX=160Ah)
  3074. SeeAlso: AX=1600h,AX=160Ah
  3075. ----------2F47-------------------------------
  3076. INT 2F U - ???
  3077.     AH = 47h
  3078.     ???
  3079. Return: ???
  3080. Note:    reportedly called by Microsoft BASIC Compiler v7.0
  3081. --------K-2F4800-----------------------------
  3082. INT 2F - DOS 5+ DOSKEY - INSTALLATION CHECK
  3083.     AX = 4800h
  3084. Return: AL = nonzero if installed
  3085.         (DOS 5.0 and 6.0 return AX=AA02h, Novell DOS 7 returns AX=EDFFh)
  3086.         ES = segment of DOSKEY resident portion
  3087.         DX = ??? (Novell DOS only; 02E6h for shipped v0.01)
  3088. Notes:    DOSKEY chains if AL is not 00h or 10h on entry
  3089.     this function is supported by Novell DOS 7 DOSKEY
  3090. SeeAlso: AX=4800h"PCED",AX=4810h
  3091. --------K-2F4800-----------------------------
  3092. INT 2F - PCED v2.1 - INSTALLATION CHECK
  3093.     AX = 4800h
  3094. Return: AX = AACDh if installed
  3095.         ES = segment of PCED kernel (PCED has multiple code segments)
  3096. Program: PCED v2.1 is a command line editor/history/macro facility by
  3097.       Cove Software.  It is the commercial version of the freeware CED.
  3098. Notes:    DOSKEY also responds to this call if installed, returning AX=AA02h.
  3099.     unlike DOSKEY, PCED does *not* chain if AL contains an
  3100.       unsupported function code.  It IRETs with all registers intact.
  3101. --------K-2F4810-----------------------------
  3102. INT 2F - DOS 5+ DOSKEY, PCED v2.1 - READ INPUT LINE FROM CONSOLE
  3103.     AX = 4810h
  3104.     DS:DX -> line buffer (see #01344 at INT 21/AH=0Ah)
  3105. Return: AX = 0000h if successful
  3106. Notes:    the first byte (length) of the buffer MUST be 80h, or MS-DOS's DOSKEY
  3107.       chains to the previous handler; PCED and Novell DOS allow sizes
  3108.       other than 80h
  3109.     if the user's input is a macro name, no text is placed in the buffer
  3110.       even though AX=0000h on return; the program must immediately issue
  3111.       this call again to retrieve the expansion of the macro.  Similarly,
  3112.       if the user enters a special parameter such as $*, this call must
  3113.       be repeated to retrieve the expansion; on the second call, DOSKEY
  3114.       overwrites the macro name on the screen with its expansion.
  3115.     unlike DOSKEY, PCED expands all macros on the first call, so it is
  3116.       not necessary to make two calls; since the buffer is not empty on
  3117.       return, DOSKEY-aware programs will not make the second call
  3118.     DOSKEY chains if AL is not 00h or 10h on entry
  3119.     this function is supported by Novell DOS 7 DOSKEY
  3120. SeeAlso: AX=4800h,INT 21/AH=0Ah
  3121. --------K-2F48C0-----------------------------
  3122. INT 2F - PCED v2.1 - PCED API
  3123.     AX = 48C0h
  3124.     DX = API function code
  3125.     other registers as required by the specified function
  3126. Return: CF clear if successful
  3127.     CF set on error
  3128.         AX = PCED error code
  3129.     other registers as appropriate for API function
  3130. Program: PCED v2.1 is a command line editor/history/macro facility by
  3131.       Cove Software.  It is the commercial version of the freeware CED.
  3132. Note:    the full API information is available from Cove Software
  3133. SeeAlso: AX=4800h"PCED",AX=48C1h,AX=48C2h,AX=48C3h
  3134. --------U-2F48C1BL00-------------------------
  3135. INT 2F - PCED/VSTACK - INSTALLATION CHECK
  3136.     AX = 48C1h
  3137.     BL = 00h
  3138. Return: AX = 0000h if installed
  3139.         BX = VSTACK resident segment
  3140. Program: VSTACK is a resident backscroll utility included as part of the PCED
  3141.       package by Cove Software
  3142. Note:    chains if BL <> 00h on entry
  3143. SeeAlso: AX=48C0h,AX=48C2h
  3144. --------U-2F48C2BL00-------------------------
  3145. INT 2F - PCED/ATTRIB - INSTALLATION CHECK
  3146.     AX = 48C2h
  3147.     BL = 00h
  3148. Return: AX = 0000h if installed
  3149.         BX = ATTRIB resident segment
  3150. Program: ATTRIB is a resident file attribute changer included as part of the
  3151.       PCED package by Cove Software
  3152. Note:    chains if BL <> 00h on entry
  3153. SeeAlso: AX=48C0h,AX=48C1h,AX=48C3h
  3154. --------K-2F48C3BL00-------------------------
  3155. INT 2F - PCED/KEYDEF - INSTALLATION CHECK
  3156.     AX = 48C3h
  3157.     BL = 00h
  3158. Return: AX = 0000h if installed
  3159.         BX = KEYDEF resident segment
  3160. Program: KEYDEF is a resident keyboard redefinition utility included as part
  3161.       of the PCED package by Cove Software
  3162. Note:    chains if BL <> 00h on entry
  3163. SeeAlso: AX=48C0h,AX=48C2h,AX=48C4h
  3164. --------U-2F48C4BL00-------------------------
  3165. INT 2F - PCED/FLIST - INSTALLATION CHECK
  3166.     AX = 48C4h
  3167.     BL = 00h
  3168. Return: AX = 0000h if installed
  3169.         BX = FLIST resident segment
  3170. Program: FLIST is a resident filelist processor included as part of the PCED
  3171.       package by Cove Software
  3172. Note:    chains if BL <> 00h on entry
  3173. SeeAlso: AX=48C0h,AX=48C3h,AX=48C5h
  3174. --------U-2F48C5BL00-------------------------
  3175. INT 2F - PCED/ASSOC - INSTALLATION CHECK
  3176.     AX = 48C5h
  3177.     BL = 00h
  3178. Return: AX = 0000h if installed
  3179.         BX = ASSOC resident segment
  3180. Program: ASSOC is a resident utility included as part of the PCED package which
  3181.       associates files with executable programs based on their extensions
  3182. Note:    chains if BL > 02h on entry
  3183. SeeAlso: AX=48C0h,AX=48C4h,AX=48C5h/BL=01h,AX=48C5h/BL=02h
  3184. --------U-2F48C5BL01-------------------------
  3185. INT 2F - PCED/ASSOC - GET VERSION
  3186.     AX = 48C5h
  3187.     BL = 01h
  3188. Return: AX = 0000h if installed
  3189.         BX = binary ASSOC version (BL = major, BH = minor)
  3190. Note:    chains if BL > 02h on entry
  3191. SeeAlso: AX=48C0h,AX=48C5h/BL=00h,AX=48C5h/BL=02h
  3192. --------U-2F48C5BL02-------------------------
  3193. INT 2F - PCED/ASSOC - ASSOCIATION TEST
  3194.     AX = 48C5h
  3195.     BL = 02h
  3196.     DS:SI -> ASCIZ filename
  3197. Return: AX = status
  3198.         0000h if filename is unknown
  3199.         0001h if there is an association defined for the file
  3200.     BX destroyed
  3201. Program: ASSOC is a resident utility included as part of the PCED package which
  3202.       associates files with executable programs based on their extensions
  3203. Note:    chains if BL > 02h on entry
  3204. SeeAlso: AX=48C0h,AX=48C5h/BL=00h,AX=48C5h/BL=01h
  3205. ----------2F49-------------------------------
  3206. INT 2F U - ???
  3207.     AH = 49h
  3208.     ???
  3209. Return: ???
  3210. Note:    reportedly called by DOS 5.0 installation
  3211. --------D-2F4A00CX0000-----------------------
  3212. INT 2F CU - DOS 5+ - FLOPPY-DISK LOGICAL DRIVE CHANGE NOTIFICATION
  3213.     AX = 4A00h
  3214.     CX = 0000h
  3215.     DH = new drive number
  3216.     DL = current drive number
  3217. Return: CX = FFFFh to skip "Insert diskette for drive X:" message
  3218. Note:    called by MS-DOS 5.0+ IO.SYS just before displaying the message
  3219.       "Insert diskette for drive X:" on single-floppy systems
  3220. --------D-2F4A01-----------------------------
  3221. INT 2F - DOS 5+ - QUERY FREE HMA SPACE
  3222.     AX = 4A01h
  3223. Return: BX = number of bytes available in HMA (0000h if DOS not using HMA)
  3224.     ES:DI -> start of available HMA area (FFFFh:FFFFh if not using HMA)
  3225. Notes:    called by Windows 3.1 DOSX.EXE
  3226.     supported by Novell DOS 7
  3227. SeeAlso: AX=4310h,AX=4A02h
  3228. --------D-2F4A02-----------------------------
  3229. INT 2F - DOS 5+ - ALLOCATE HMA SPACE
  3230.     AX = 4A02h
  3231.     BX = number of bytes
  3232. Return: ES:DI -> start of allocated HMA block or FFFFh:FFFFh
  3233.     BX = number of bytes actually allocated (rounded up to next paragraph
  3234.           for DOS 5.0 and 6.0)
  3235. Notes:    this call is not valid unless DOS is loaded in the HMA (DOS=HIGH)
  3236.     called by Windows 3.1 DOSX.EXE
  3237.     supported by Novell DOS 7
  3238. SeeAlso: AX=4A01h,AX=4A03h
  3239. --------D-2F4A03-----------------------------
  3240. INT 2F U - Windows95 - DOS KERNEL - (DE)ALLOCATE HMA MEMORY BLOCK
  3241.     AX = 4A03h
  3242.     CX = segment of block's owner???
  3243.     DL = subfunction
  3244.         00h allocate block
  3245.         BX = number of bytes
  3246.         Return: DI=FFFFh if unable to allocate
  3247.             ES:DI -> allocated block
  3248.         01h resize block
  3249.         ES:DI -> previously-allocated block
  3250.         BX = new size in bytes (must be less than original size???)
  3251.         Return: DI=FFFFh if unable to allocate
  3252.             ES:DI -> reallocated block
  3253.         Note:    the contents of the original block are NOT copied
  3254.         02h free block???
  3255.         ES:DI -> block to be freed
  3256. Note:    in MS-DOS 7.x, function 4A02h is implemented by calling this function
  3257.       with DL=00h
  3258. SeeAlso: AX=4A02h
  3259. --------D-2F4A04-----------------------------
  3260. INT 2F U - Windows95 - DOS KERNEL - GET START OF HMA MEMORY CHAIN
  3261.     AX = 4A04h
  3262. Return: AX = 0000h if function supported
  3263.         ES:DI -> first HMA memory control block (see #02800)
  3264.  
  3265. Format of Windows95 HMA memory control block:
  3266. Offset    Size    Description    (Table 02800)
  3267.  00h  2 BYTEs    signature "MS" (4Dh 53h)
  3268.  02h    WORD    segment of owner (or segment at which to address block???)
  3269.         0000h = free
  3270.         0001h = DOS???
  3271.         FF33h = IO.SYS
  3272.         FFFFh = MSDOS.SYS
  3273.  04h    WORD    size of memory block (not including this header)
  3274.  06h    WORD    offset of next memory block in segment FFFFh, or 0000h if last
  3275.  08h  8 BYTEs    unused (explicitly set to 0 for MS-DOS 7.10)
  3276. --------T-2F4A05-----------------------------
  3277. INT 2F U - DOS 5+ DOSSHELL - TASK SWITCHING API???
  3278.     AX = 4A05h
  3279.     SI = function
  3280.         0000h reset???
  3281.         0001h ???
  3282.         ES:BP -> 80-byte buffer containing ???
  3283.         0002h ???
  3284.         0003h ???
  3285.         0004h ???
  3286.         BL = ???
  3287.         0005h ???
  3288.         0006h get ???
  3289.         Return: ES:SI -> ???
  3290.         0007h get ???
  3291.         Return: AX = ???
  3292.         0008h get ???
  3293.         Return: DX:AX -> ??? (internal control data of some kind)
  3294.         0009h get ???
  3295.         Return: ES:SI -> ??? (apparently identical to function 0006h)
  3296.         000Ah ???
  3297.         BL = length of buffer
  3298.         ES:BP -> buffer containing ???
  3299.         000Bh get ???
  3300.         Return: AX = ???
  3301.         000Ch ???
  3302.         BL = ???
  3303.         Return: if BL nonzero on entry
  3304.                 DX:AX -> ???
  3305.             if BL = 00h on entry
  3306.                 ES:SI -> ???
  3307. Notes:    DOSSHELL chains to the previous handler if SI is not one of the values
  3308.       listed above
  3309.     the DOSSWAP.EXE module calls functions 03h,04h,05h,07h,08h,09h,0Ch
  3310.     the Windows 3.1 DSWAP.EXE and WSWAP.EXE task switchers use these calls
  3311. SeeAlso: AX=4B01h
  3312. --------D-2F4A06-----------------------------
  3313. INT 2F CU - DOS 5+ - DOS SUPERVISOR "REBOOT PANEL" - ADJUST MEMORY SIZE
  3314.     AX = 4A06h
  3315.     DX = segment following last byte of conventional memory
  3316. Return: DX = segment following last byte of memory available for use by DOS
  3317. Desc:    used to override the default memory size when booting diskless
  3318.       workstations
  3319. Notes:    called by MS-DOS 5+ IO.SYS startup code if the signature "RPL" is
  3320.       present three bytes beyond the INT 2F handler; this call overrides
  3321.       the value returned by INT 12
  3322.     hooked by RPL code at the top of memory to protect itself from being
  3323.       overwritten; DOS builds a memory block with owner = 0008h and name
  3324.       "RPL" which must be freed by the RPL code when it is done
  3325. SeeAlso: INT 12"BIOS",INT 18"BOOT HOOK"
  3326. --------N-2F4A07-----------------------------
  3327. INT 2F U - RESERVED FOR PROTMAN SUPPORT
  3328.     AX = 4A07h
  3329.     ???
  3330. Return: ???
  3331. --------c-2F4A10BX0000-----------------------
  3332. INT 2F - SMARTDRV v4.00+ - INSTALLATION CHECK AND HIT RATIOS
  3333.     AX = 4A10h
  3334.     BX = 0000h
  3335.     CX = EBABh (v4.1+; see Note)
  3336. Return: AX = BABEh if installed
  3337.         DX:BX = cache hits
  3338.         DI:SI = cache misses
  3339.         CX = number of dirty cache elements
  3340.         BP = version in BCD (4.10 = 0410h)
  3341. Notes:    most of the SMARTDRV API, including this call, is supported by
  3342.       PC-Cache v8.0 and recent versions of the Norton Caches
  3343.     if DBLSPACE.BIN is installed but SMARTDRV has not yet been installed,
  3344.       then calls of this function with CX<>EBABh on entry cause
  3345.       DBLSPACE.BIN to display the error message
  3346.       "Cannot run SMARTDrive 4.0 with DoubleSpace" and abort the caller
  3347.       with INT 21/AX=4C00h
  3348.     SMARTDRV v3.x had a completely different API using IOCTL calls, which
  3349.       was also supported by the Norton Caches
  3350. SeeAlso: AX=4A10h/BX=0001h,AX=4A10h/BX=0004h,AX=4A10h/BX=0005h
  3351. SeeAlso: AX=4A10h/BX=0007h,AX=4A10h/BX=1234h,AX=4A11h/BX=0000h
  3352. SeeAlso: INT 21/AX=4402h"SMARTDRV",INT 21/AX=4403h"SMARTDRV"
  3353. --------c-2F4A10BX0000-----------------------
  3354. INT 2F U - Novell NWCACHE - ???
  3355.     AX = 4A10h
  3356.     BX = 0000h
  3357.     CX = 0EDCh ('EDC' = Novell European Development Center)
  3358. Return: ???
  3359. SeeAlso: AX=4A10h/BX=0001h"NWCACHE"
  3360. --------c-2F4A10BX0001-----------------------
  3361. INT 2F - SMARTDRV v4.00+ - FLUSH BUFFERS (COMMIT CACHE)
  3362.     AX = 4A10h
  3363.     BX = 0001h
  3364. Note:    this function is also supported by PC-Cache v8.0.
  3365. SeeAlso: AX=4A10h/BX=0000h,AX=4A10h/BX=0002h,INT 21/AH=0Dh
  3366. --------c-2F4A10BX0001-----------------------
  3367. INT 2F U - Novell NWCACHE - ???
  3368.     AX = 4A10h
  3369.     BX = 0001h
  3370.     CX = 0EDCh ('EDC' = Novell European Development Center)
  3371. Return: ???
  3372. SeeAlso: AX=4A10h/BX=0000h"NWCACHE"
  3373. --------c-2F4A10BX0002-----------------------
  3374. INT 2F - SMARTDRV v4.00+ - RESET CACHE
  3375.     AX = 4A10h
  3376.     BX = 0002h
  3377. Note:    this function is also supported by PC-Cache v8.0.
  3378. SeeAlso: AX=4A10h/BX=0000h,AX=4A10h/BX=0001h
  3379. --------c-2F4A10BX0003-----------------------
  3380. INT 2F - SMARTDRV v4.00+ - STATUS
  3381.     AX = 4A10h
  3382.     BX = 0003h
  3383.     BP = drive number (0=A, 1=B, etc.)
  3384.     DL = subfunction
  3385.         00h only get information
  3386.         01h turn on read cache
  3387.         02h turn off read cache
  3388.         03h turn on write cache
  3389.         04h turn off write cache
  3390.         ---NWCACHE---
  3391.         05h ???
  3392.         06h ???
  3393. Return: AX = BABEh if OK
  3394.     DL = status (see #02801)
  3395.     DL = FFh if drive does not exist
  3396. Notes:    If the read cache is off, reads will not be cached, but writes will
  3397.       continue to be cached if the write-cache is enabled.
  3398.     this function is also supported by PC-Cache v8.0.
  3399. SeeAlso: AX=4A10h/BX=0000h
  3400.  
  3401. Bitfields for SMARTDRV status:
  3402. Bit(s)    Description    (Table 02801)
  3403.  7    not cached
  3404.  6    write-through (not write-cached)
  3405.  0-5    real drive number (0=A, 1=B...)
  3406. Note:    the "real" drive number is always set to 00h for RAM disks and to 3Fh
  3407.       for CD-ROMs; unfortunately, the latter means that an uncached CD-ROM
  3408.       has status FFh, just as a nonexistent drive does
  3409. --------c-2F4A10BX0004-----------------------
  3410. INT 2F - SMARTDRV v4.00+ - GET CACHE SIZE
  3411.     AX = 4A10h
  3412.     BX = 0004h
  3413. Return: AX = size in elements of full-sized cache
  3414.     BX = current size in elements
  3415.     CX = size of one element in bytes
  3416.     DX = number of elements under Windows
  3417. Note:    this function is also supported by PC-Cache v8.0.
  3418. SeeAlso: AX=4A10h/BX=0000h,AX=4A10h/BX=0003h,AX=4A10h/BX=0005h
  3419. --------c-2F4A10BX0005-----------------------
  3420. INT 2F - SMARTDRV v4.00+ - GET DOUBLE-BUFFER STATUS
  3421.     AX = 4A10h
  3422.     BX = 0005h
  3423.     BP = drive number (0=A, 1=B...)
  3424. Return: AX = BABEh if double-buffered
  3425.         ES:DI -> 16-byte array of status bytes for fixed disks (see #02802)
  3426. SeeAlso: AX=4A10h/BX=0000h,AX=4A10h/BX=0003h,AX=4A10h/BX=0006h
  3427.  
  3428. (Table 02802)
  3429. Values for SMARTDRV status byte:
  3430.  00h    state unknown
  3431.  FFh    drive double-buffered
  3432.  else    not double-buffered
  3433. --------c-2F4A10BX0006-----------------------
  3434. INT 2F CU - SMARTDRV v4.00+ - CHECK IF DRIVE CACHEABLE
  3435.     AX = 4A10h
  3436.     BX = 0006h
  3437.     CL = drive number (01h = A:)
  3438. Return: AX = 0006h if drive should not be cached by SMARTDRV
  3439. Note:    called by SMARTDRV at startup to determine whether it should cache
  3440.       a particular drive
  3441. SeeAlso: AX=4A10h/BX=0000h
  3442. --------c-2F4A10BX0007-----------------------
  3443. INT 2F - SMARTDRV v4.00+ - GET DEVICE DRIVER FOR DRIVE
  3444.     AX = 4A10h
  3445.     BX = 0007h
  3446.     BP = drive number (00h=A:)
  3447. Return: DL = unit number within device driver
  3448.     ES:DI -> device driver header for drive (see #01646)
  3449. Note:    this function is also supported by PC-Cache v8.0.
  3450.     this call is reported to always return the driver header of the
  3451.       standard block driver (A:-C:+) for SmartDrive v5.00 from MS-DOS 6.2
  3452. SeeAlso: AX=4A10h/BX=0000h,AX=4A11h/BX=0003h,AX=4A11h/BX=0004h
  3453. --------c-2F4A10BX0008-----------------------
  3454. INT 2F - SMARTDRV v4.20+ - GET/SET FLUSH BEFORE PROMPT, CD-ROM SUPPORT
  3455.     AX = 4A10h
  3456.     BX = 0008h
  3457.     DL = subfunction
  3458.         00h set
  3459.         DH = new states
  3460.             bit 0: flush before prompt
  3461.             bits 1-7 reserved (0)
  3462.         01h get
  3463.         Return: DH = status flags
  3464.                 bit 0: (v4.2+) flush before prompt
  3465.                 bit 1: (v5.0+) CD-ROM caching support installed
  3466. Note:    v4.2 was an interim release to fix problems in the SMARTDRV included
  3467.       with MS-DOS 6.00; v5.00 is included with MS-DOS 6.2
  3468. --------c-2F4A10BX000A-----------------------
  3469. INT 2F - SMARTDRV v4.00+ - GET ELEMENT STATUS TABLE
  3470.     AX = 4A10h
  3471.     BX = 000Ah
  3472. Return: ES:BX -> information pointer table (see #02803)
  3473. Note:    this function is also supported by PC-Cache v8.0.
  3474. SeeAlso: AX=4A10h/BX=0000h
  3475.  
  3476. Format of SMARTDRV information pointer table:
  3477. Offset    Size    Description    (Table 02803)
  3478.  00h    WORD    offset of ??? byte/word array (byte if elements < 2000h bytes)
  3479.  02h    WORD    offset of dirty flag byte/word array (byte if elts < 2000h)
  3480.         each byte/word is a bit string of the dirty sectors in element
  3481.  04h    WORD    offset of word array containing low halves of unique
  3482.           identifiers for the corresponding element's contents
  3483.  06h    WORD    offset of word array containing high halves of unique
  3484.           identifiers for the corresponding element's contents
  3485.  08h    WORD    offset of WORD containing current number of elements in cache
  3486. --------c-2F4A10BX1234-----------------------
  3487. INT 2F - SMARTDRV v4.00+ - SIGNAL SERIOUS ERROR
  3488.     AX = 4A10h
  3489.     BX = 1234h
  3490. Desc:    this function pops up a message box saying that a serious error
  3491.       occurred and to hit R to retry, then waits for the keypress
  3492. Note:    this function is also supported by PC-Cache v8.0.
  3493. SeeAlso: AX=4A10h/BX=0000h
  3494. --------k-2F4A11BX0000-----------------------
  3495. INT 2F - DBLSPACE.BIN - "GetVersion" - INSTALLATION CHECK
  3496.     AX = 4A11h
  3497.     BX = 0000h
  3498. Return: AX = 0000h (successful)
  3499.     BX = 444Dh ("DM")
  3500.     CL = first drive letter used by DBLSPACE (41h ['A'] = A:)
  3501.     CH = number of drive letters used by DBLSPACE
  3502.     DX = internal DBLSPACE.BIN version number (bits 14-0)
  3503.         bit 15 set if DBLSPACE.BIN has not yet been relocated to final
  3504.           position in memory (i.e. DBLSPACE.SYS /MOVE)
  3505. Program: DBLSPACE.BIN is the resident driver for DoubleSpace, the
  3506.       disk-compression software bundled with MS-DOS 6.0 and 6.20
  3507. Notes:    this function is also supported by the version of SuperStor bundled
  3508.       with IBM DOS 6.x and "preloading" versions of Stacker
  3509.     the complete DBLSPACE.BIN API is still supported by MS-DOS 6.22's
  3510.       DRVSPACE.BIN
  3511. SeeAlso: AX=4A11h/BX=0001h,AX=4A11h/BX=0002h,AX=4A11h/BX=0003h
  3512. SeeAlso: AX=4A11h/BX=0005h,AX=4A11h/BX=0007h,AX=4A11h/BX=FFFFh
  3513. SeeAlso: INT 21/AX=4404h"DBLSPACE"
  3514. --------k-2F4A11BX0001-----------------------
  3515. INT 2F - DBLSPACE.BIN - "GetDriveMapping" - GET DRIVE MAPPING
  3516.     AX = 4A11h
  3517.     BX = 0001h
  3518.     DL = drive number (0=A:)
  3519. Return: AX = status (see also #02804)
  3520.         0000h successful
  3521.         if DL was compressed drive,
  3522.             BL = host drive (bit 7 set if drive is compressed)
  3523.         else if DL was host drive,
  3524.             BL = compressed drive
  3525.         else
  3526.             BL = specified drive (if available for DoubleSpace)
  3527.         BH = DoubleSpace sequence number
  3528.         other error code (0101h) (see #02804)
  3529.         apparently never returned for the MS-DOS 6.2 DoubleSpace
  3530. Note:    the compressed volume file for the specified compressed drive is
  3531.       host:\DBLSPACE.sequence
  3532. SeeAlso: AX=4A11h/BX=0000h
  3533.  
  3534. (Table 02804)
  3535. Values for DBLSPACE function status:
  3536.  0000h    successful
  3537.  0100h    bad function
  3538.  0101h    invalid drive
  3539.  0102h    not a compressed drive
  3540.  0103h    drive already swapped
  3541.  0104h    drive not swapped
  3542. SeeAlso: #02806
  3543. --------k-2F4A11BX0002-----------------------
  3544. INT 2F - DBLSPACE.BIN - "Swap Drive" - SWAP DRIVE LETTERS OF CVF AND HOST DRIVE
  3545.     AX = 4A11h
  3546.     BX = 0002h
  3547.     DL = drive number (0=A:) of compressed drive to swap with its host
  3548. Return: AX = status (0000h,0101h,0102h,0103h) (see #02804)
  3549. Note:    this function is intended for use by DBLSPACE.EXE only
  3550. SeeAlso: AX=4A11h/BX=0000h
  3551. --------k-2F4A11BX0003-----------------------
  3552. INT 2F - DBLSPACE.BIN - "DSGetEntryPoints" - GET DEVICE DRIVER ENTRY POINTS
  3553.     AX = 4A11h
  3554.     BX = 0003h
  3555.     CL = drive number (0=A:) of compressed drive
  3556. Return: CL = FFh on error (not compressed drive)
  3557.     CL <> FFh driver unit number of host drive
  3558.         ES:SI -> device driver's strategy routine
  3559.         ES:DI -> device driver's interrupt routine
  3560.     BX destroyed
  3561. Note:    in conjunction with subfunction 0004h, this call allows disk caches
  3562.       like SMARTDRV to apply a device driver wrapper to DoubleSpaced
  3563.       drives just like SMARTDRV applies to regular block devices
  3564. SeeAlso: AX=4A10h/BX=0007h,AX=4A11h/BX=0000h,AX=4A11h/BX=0004h
  3565. --------k-2F4A11BX0004-----------------------
  3566. INT 2F - DBLSPACE.BIN - "DSSetEntryPoints" - SET DEVICE DRIVER ENTRY POINTS
  3567.     AX = 4A11h
  3568.     BX = 0004h
  3569.     CL = drive number (0=A:) of compressed drive
  3570.     DL = unit number for new driver entry points
  3571.     DH = 00h
  3572.     ES:SI -> device driver strategy routine to call for drive
  3573.     ES:DI -> device driver interrupt routine to call for drive
  3574. Return: CL = FFh on error (not a compressed drive)
  3575.     BX destroyed
  3576. Program: DBLSPACE.BIN is the resident driver for DoubleSpace, the
  3577.       disk-compression software bundled with MS-DOS 6.0
  3578. Note:    in conjunction with subfunction 0003h, this call allows disk caches
  3579.       like SMARTDRV to apply a device driver wrapper to DoubleSpaced
  3580.       drives just like SMARTDRV applies to regular block devices
  3581. SeeAlso: AX=4A10h/BX=0007h,AX=4A11h/BX=0000h,AX=4A11h/BX=0003h
  3582. --------k-2F4A11BX0005-----------------------
  3583. INT 2F - DBLSPACE.BIN - "ActivateDrive" - MOUNT COMPRESSED DRIVE
  3584.     AX = 4A11h
  3585.     BX = 0005h
  3586.     DL = drive number (0=A:) to assign to new drive
  3587.     ES:SI -> activation record (see #02805)
  3588. Return: status returned in activation record (see #02806)
  3589. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0006h
  3590.  
  3591. Format of DBLSPACE activation record:
  3592. Offset    Size    Description    (Table 02805)
  3593.  00h  2 BYTEs    signature "MD" (4Dh 44h)
  3594.  02h    BYTE    4Dh ('M') mount command
  3595.  03h    BYTE    error code (set to FFh before calling) (see #02806)
  3596.  04h    BYTE    host drive number (0=A:)
  3597.  05h    ???    DISK_UNIT structure (not documented)
  3598.  
  3599. (Table 02806)
  3600. Values for DBLSPACE Mount error code:
  3601.  00h    successful
  3602.  01h    drive letter not available for DoubleSpace
  3603.  02h    drive letter already in use
  3604.  03h    no more disk units (increase MaxRemovableDrives in .INI)
  3605.  09h    CVF too fragmented
  3606. SeeAlso: #02805,#02804
  3607. --------k-2F4A11BX0006-----------------------
  3608. INT 2F - DBLSPACE.BIN - "DeactivateDrive" - UNMOUNT COMPRESSED DRIVE
  3609.     AX = 4A11h
  3610.     BX = 0006h
  3611.     DL = drive number (0=A:) to unmount
  3612. Return: AX = status (0000h,0102h) (see #02804)
  3613. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0005h
  3614. --------k-2F4A11BX0007-----------------------
  3615. INT 2F - DBLSPACE.BIN - "GetDriveSpace" - GET SPACE AVAIL ON COMPRESSED DRIVE
  3616.     AX = 4A11h
  3617.     BX = 0007h
  3618.     DL = compressed drive number (0=A:)
  3619. Return: AX = status (0000h,0102h) (see also #02804)
  3620.         0000h successful
  3621.         DS:SI -> free space record (see #02807)
  3622. Program: DBLSPACE.BIN is the resident driver for DoubleSpace, the
  3623.       disk-compression software bundled with MS-DOS 6.0
  3624. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0008h
  3625.  
  3626. Format of DBLSPACE free space record:
  3627. Offset    Size    Description    (Table 02807)
  3628.  00h    DWORD    total number of sectors in drive's sector heap
  3629.  04h    DWORD    number of free sectors in drive's sector heap
  3630. --------k-2F4A11BX0008-----------------------
  3631. INT 2F - DBLSPACE.BIN - "GetFileFragmentSpace" - GET SIZE OF FRAGMENT HEAP
  3632.     AX = 4A11h
  3633.     BX = 0008h
  3634.     DL = compressed drive number (0=A:)
  3635. Return: AX = status (0000h,0102h) (see also #02804)
  3636.         0000h successful
  3637.         BX = maximum entries in File Fragment heap
  3638.         CX = available entries in File Fragment heap
  3639. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0007h,AX=4A11h/BX=0009h
  3640. --------k-2F4A11BX0009-----------------------
  3641. INT 2F - DBLSPACE.BIN - "GetExtraInfo" - DETERMINE NUMBER OF DISK_UNIT STRUCTS
  3642.     AX = 4A11h
  3643.     BX = 0009h
  3644.     DL = compressed drive number (0=A:)
  3645. Return: AX = status (see also #02804)
  3646.         0000h successful
  3647.         CL = number of DISK_UNIT structures allocated
  3648.               (see AX=4A11h/BX=0005h)
  3649.         CH = DoubleGuard enabled-checks bitflags in bits 6-0 (DOS 6.2)
  3650. Note:    the DoubleGuard checks are enabled or disabled as a block by the
  3651.       DoubleGuard= line in DBLSPACE.INI; they may be individually set with
  3652.       the CheckSum= line.
  3653. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=0008h
  3654. --------k-2F4A11BX000A-----------------------
  3655. INT 2F - DBLSPACE.BIN v6.2 - SET AUTOMOUNT DRIVES
  3656.     AX = 4A11h
  3657.     BX = 000Ah
  3658.     CX:DX = bitmask of drives on which to enable AutoMount
  3659.         (DX bit 0 = A:, CX bit 0 = P:, etc.)
  3660. Return: AX = 0000h if supported
  3661.         CX:DX = old mask or 0000h:0000h on error
  3662.     BX destroyed
  3663. SeeAlso: AX=4A11h/BX=000Bh
  3664. --------k-2F4A11BX000B-----------------------
  3665. INT 2F - DBLSPACE.BIN v6.2 - GET AUTOMOUNT DRIVES
  3666.     AX = 4A11h
  3667.     BX = 000Bh
  3668. Return: AX = 0000h if supported
  3669.         CX:DX = mask of drives with AutoMount enabled
  3670.         0000h:0000h on error
  3671.     BX destroyed
  3672. SeeAlso: AX=4A11h/BX=000Ah
  3673. --------k-2F4A11BXFFFE-----------------------
  3674. INT 2F U - DBLSPACE.BIN - RELOCATE
  3675.     AX = 4A11h
  3676.     BX = FFFEh
  3677.     ES = segment to which to relocate DBLSPACE.BIN
  3678. Return: ???
  3679. Notes:    called by DBLSPACE.SYS to relocate DBLSPACE.BIN to its final position
  3680.       in memory
  3681.     this function also unhooks and discards the code providing this
  3682.       function and AX=4A11h/BX=FFFFh
  3683.     this function is also supported by the version of SuperStor bundled
  3684.       with IBM DOS 6.x and "preloading" versions of Stacker
  3685. SeeAlso: AX=4A11h/BX=FFFFh
  3686. --------k-2F4A11BXFFFF-----------------------
  3687. INT 2F U - DBLSPACE.BIN - GET RELOCATION SIZE
  3688.     AX = 4A11h
  3689.     BX = FFFFh
  3690. Return: AX = number of paragraphs needed by DBLSPACE.BIN
  3691. Note:    used by DBLSPACE.SYS to relocate the DBLSPACE driver to its final
  3692.       position in memory
  3693.     this function is also supported by the version of SuperStor bundled
  3694.       with IBM DOS 6.x and "preloading" versions of Stacker
  3695. SeeAlso: AX=4A11h/BX=0000h,AX=4A11h/BX=FFFEh
  3696. --------k-2F4A12CX4D52-----------------------
  3697. INT 2F - Microsoft Realtime Compression Interface (MRCI) - RAM-BASED SERVER
  3698.     AX = 4A12h
  3699.     CX = 4D52h ("MR")
  3700.     DX = 4349h ("CI")
  3701. Return: CX = 4943h ("IC") if installed
  3702.     DX = 524Dh ("RM") if installed
  3703.         ES:DI -> MRCINFO structure (see #00725 at INT 1A/AX=B001h)
  3704. Note:    this call is functionally identical to INT 1A/AX=B001h, but should be
  3705.       called first, as the latter call is used for the first, ROM-based
  3706.       MRCI server, while this call is used for RAM-based servers which
  3707.       may be partially or entirely replacing a prior server
  3708. SeeAlso: AX=4A12h/CX=5354h,INT 1A/AX=B001h
  3709. --------k-2F4A12CX5354-----------------------
  3710. INT 2F - Stacker 4 LZS Compression Interface (LZSAPI)
  3711.     AX = 4A12h
  3712.     CX = 5354h ("ST")
  3713.     DX = 4143h ("AC")
  3714. Return: AX = 4F4Bh ("OK") if installed
  3715.     CX = 7374h ("st") if installed
  3716.     DX = 6163h ("ac") if installed
  3717.         ES:DI -> entry point in LZSAPI server (usually, driver
  3718.               STACKER.COM) containing far address of an actual
  3719.               LZSINFO structure (see #02808)
  3720. SeeAlso: AX=4A12h/CX=4D52h,INT 25/AX=CDCDh
  3721.  
  3722. Format of LZSINFO structure:
  3723. Offset    Size    Description    (Table 02808)
  3724.  00h  6 BYTEs    signature "LZSAPI"
  3725.  06h    WORD    server version (200 (0C8h) for Stacker 4 and Stacker Anywhere)
  3726.  08h  4 BYTEs    vendor signature
  3727.         "STAC" = Stac Electronics, Inc.
  3728.  0Ch  6 BYTEs    ???
  3729.  12h    WORD    bit flags: server status/capabilities (see #02809)
  3730.  14h    DWORD    -> Stacker 3.X-compatible compression procedure
  3731.  18h    DWORD    -> Stacker 3.X-compatible decompression procedure
  3732.  1Ch  4 BYTEs    reserved (always set to 0)
  3733.  20h    DWORD    -> incremental Stacker 3.x-compatible compression procedure
  3734.           (see #02810)
  3735.  24h  4 BYTEs    ???
  3736.  28h    DWORD    -> incremental Stacker 3.x-compatible decompression procedure
  3737.           (see #02811)
  3738.  2Ch  4    BYTES    ???
  3739.  30h    DWORD    -> new (Stacker 4) compression procedure
  3740.  34h  4 BYTEs    ???
  3741.  38h    DWORD    -> new (Stacker 4) decompression procedure
  3742. Notes:    Stacker 4 usally keeps two different data-compression algorithms in
  3743.       memory (preferably in XMA):
  3744.         1) new (Stacker 4) data compression algorithm (4K LZ77 with hashing
  3745.           and static Huffman encoding), and
  3746.         2) old (Stacker 3.x-compatible) one (2K LZ77 with hashing), which
  3747.           is used to work with STACVOL files created under older
  3748.           versions of Stacker.
  3749.  
  3750. Bitfields for LZSAPI capabilities:
  3751. Bit(s)    Description    (Table 02809)
  3752.  0    ???
  3753.  1    busy/error flag
  3754.  2-10    ???
  3755.  11    maximum compressor/decompressor presented
  3756.  
  3757. (Table 02810)
  3758. Call Stacker 3.x-style non-incremental functions with:
  3759.     STACK:    DWORD    return address for compress/decompress procedure
  3760.         WORD    compression algorithm parameters (see #02812)
  3761.         WORD    size of destination buffer (in bytes)
  3762.         DWORD    address of destination buffer
  3763.         WORD    size of source buffer (in bytes)
  3764.         DWORD    address of source buffer
  3765. Return: (compression/decompression procedure)
  3766.     AX = size of resulting data in destination buffer
  3767.         0000h if error (either destination buffer too small or error in
  3768.           compressed data)
  3769.  
  3770. (Table 02811)
  3771. Call Stacker 4-style incremental procedures with:
  3772.     STACK:    DWORD    return address for compr./decompr. procedure
  3773.         DWORD    address of LZSSWAP structure (see #02813)
  3774.             if 0000:0000, procedure uses non-incremental technique
  3775.         WORD    compression algorithm parameters (see #02812)
  3776.         WORD    size of destination buffer (in bytes)
  3777.         DWORD    address of destination buffer
  3778.         WORD    size of source buffer (in bytes)
  3779.         DWORD    address of source buffer
  3780.  
  3781. (Table 02812)
  3782. Values for Compression algorithm parameters:
  3783. Value    Compression level (/P=xx parameter)
  3784.  07F9h      1
  3785.  0621h      2
  3786.  0625h      3
  3787.  0665h      4
  3788.  0669h      5
  3789.  06E9h      6
  3790.  06EDh      7
  3791.  07D1h      8
  3792.  07D9h      9
  3793.  
  3794. Format of LZSSWAP structure:
  3795. Offset    Size    Description    (Table 02813)
  3796.  00h  2 BYTEs    signature "CS"
  3797.  02h  6 BYTEs    reserved
  3798.  08h    DWORD    address of destination buffer swapping procedure
  3799.  0Ch    DWORD    address of stack swapping procedure
  3800. --------k-2F4A13-----------------------------
  3801. INT 2F U - DBLSPACE.BIN - GET ??? ENTRY POINTS
  3802.     AX = 4A13h
  3803. Return: AX = 134Ah if supported
  3804.         ES:BX -> entry point record (see #02814)
  3805. SeeAlso: AX=4A11h/BX=0000h
  3806.  
  3807. Format of DBLSPACE entry point record:
  3808. Offset    Size    Description    (Table 02814)
  3809.  00h    DWORD    pointer to FAR function for ???
  3810.  04h  5 BYTEs    FAR JUMP instruction to ???
  3811. ----------2F4A15BX0000-----------------------
  3812. INT 2F - MS EMM386.EXE v4.46+ - INSTALL I/O VIRTUALIZATION HANDLER
  3813.     AX = 4A15h
  3814.     BX = 0000h (function number)
  3815.     DX = starting I/O address
  3816.     EDX high word = ending I/O address
  3817.     CX = number of ports to trap
  3818.     DS:SI -> I/O dispatch table (see #02815)
  3819.     DI = size of client's code and data (size of DS segment which must be
  3820.           made available to I/O dispatch function in protected mode)
  3821. Return: CF clear if successful
  3822.     CF set on error
  3823. Notes:    this interface is only available in virtual-86 mode; the I/O handlers
  3824.       will be called in protected mode
  3825.     only ports 0100h-FFFFh may be trapped; EMM386 reserved ports 0000h-
  3826.       00FFh
  3827.  
  3828. Format of EMM386 I/O dispatch table [array]:
  3829. Offset    Size    Description    (Table 02815)
  3830.  00h    WORD    I/O port number
  3831.  02h    WORD    offset of I/O handler for port (see #02816)
  3832.  
  3833. (Table 02816)
  3834. Values EMM386 I/O dispatch function is called with:
  3835.     CX = Ring0 code selector for I/O handler's segment
  3836.     DS = Ring0 data selector for I/O handler's segment (alias of CS)
  3837.     EDX = faulting I/O address
  3838.     ECX = direction (00000008h for byte output, 00000000h for byte input)
  3839.         (reportedly 00h for byte/word input, 04h for byte/word output
  3840.           under DOS 6.22 EMM386)
  3841.     EAX = data in/out
  3842. Return: (via FAR RET)
  3843.     CF clear if I/O access successfully virtualized
  3844.     CF set if access not virtualized (default handler will be called to
  3845.           perform the I/O)
  3846. BUG:    32-bit I/O on trapped ports hangs the DOS 6.22 EMM386
  3847. SeeAlso: #02815
  3848. --------D-2F4A16-----------------------------
  3849. INT 2F U - Windows95 - OPEN BOOT LOG
  3850.     AX = 4A16h
  3851. Return: AX = status
  3852.         0000h successful
  3853.         FFFFh boot log file already open
  3854.         else  DOS error code
  3855.     BX destroyed
  3856. SeeAlso: AX=4A17h,AX=4A18h
  3857. --------D-2F4A17-----------------------------
  3858. INT 2F U - Windows95 - WRITE TO BOOT LOG
  3859.     AX = 4A17h
  3860.     CX = number of bytes to write
  3861.     DS:DX -> message to write (must include CR-LF if it is desired)
  3862. Return: AX = status
  3863.         0000h successful
  3864.         FFFFh boot log file not open
  3865.         else  DOS error code
  3866. Note:    calls the code for INT 2F/AX=4A21h after writing to the file
  3867. SeeAlso: AX=4A17h,AX=4A18h,AX=4A21h
  3868. --------D-2F4A18-----------------------------
  3869. INT 2F U - Windows95 - CLOSE BOOT LOG
  3870.     AX = 4A18h
  3871. Return: AX = status
  3872.         0000h successful
  3873.         FFFFh boot log file not open
  3874.         else  DOS error code from closing file
  3875.     BX destroyed
  3876. SeeAlso: AX=4A16h,AX=4A17h
  3877. --------D-2F4A21-----------------------------
  3878. INT 2F U - Windows95 - ???
  3879.     AX = 4A21h
  3880. Return: AX destroyed
  3881. Note:    calls INT 21/AX=4404h"IOCTL" with a five-byte buffer containing "MDF??"
  3882. SeeAlso: AX=4A17h
  3883. --------D-2F4A31-----------------------------
  3884. INT 2F U - Windows95 - ???
  3885.     AX = 4A31h
  3886.     CL = new value for ???
  3887.     DS:SI -> BYTE to be set to CL
  3888. Return: nothing
  3889. --------D-2F4A32-----------------------------
  3890. INT 2F U - Windows95 - PATCH ???
  3891.     AX = 4A32h
  3892.     BL = subfunction
  3893.         00h get ???
  3894.         Return: AX = flag: subfunction 04h has been used (0000h/FFFFh)
  3895.             DX = ??? (0000h/?)
  3896.         01h    patch ??? in IO.SYS (segment 0070h)
  3897.         02h unpatch ??? in IO.SYS
  3898.         03h ???
  3899.         04h set ???, then do subfunction 01h
  3900.         05h unset ???, then do subfunction 02h
  3901.         else
  3902.         Return: nothing
  3903. --------D-2F4A33-----------------------------
  3904. INT 2F - Windows95 - CHECK MS-DOS VERSION 7
  3905.     AX = 4A33h
  3906. Return: AX = 0000h for MS-DOS 7.00+
  3907.         (officially) BX,DX,SI,DS may be destroyed
  3908.         (undoc) DS:DX -> ASCIZ primary shell executable name
  3909.         (undoc) DS:SI -> CONFIG.SYS SHELL= command line (counted string)
  3910.         (undoc) BH = ??? (0000h)
  3911.         (undoc) BL = ??? (0000h)
  3912.     AX nonzero (usually 4A33h) if MS-DOS 6- or other DOS
  3913. SeeAlso: AX=1611h,INT 21/AH=30h
  3914. --------N-2F4B-------------------------------
  3915. INT 2F - LAN Manager 2.0 DOS Enh NETWKSTA.EXE - NETWORK WORKSTATION REDIRECTOR
  3916.     AH = 4Bh
  3917.     ???
  3918. Return: ???
  3919. Note:    LAN Manager enhanced mode adds features beyond the standard redirector
  3920.       file/printer services
  3921. SeeAlso: AX=118Ah,AX=4100h,AH=42h
  3922. --------T-2F4B01-----------------------------
  3923. INT 2F C - DOS 5+ TASK SWITCHER - BUILD CALLOUT CHAIN
  3924.     AX = 4B01h
  3925.     CX:DX -> task switcher entry point (see #02819)
  3926.     ES:BX = 0000h:0000h
  3927. Return: ES:BX -> callback info structure (see #02817) or 0000h:0000h
  3928. Notes:    called by the task switcher
  3929.     this function is hooked by clients which require notification of task
  3930.       switcher activities; the call must first be passed on to the prior
  3931.       handler with registers unchanged using a simulated interrupt.     On
  3932.       return, the client must build a callback info structure and store
  3933.       the returned ES:BX in the "next" field, then return the address of
  3934.       its own callback info structure.
  3935.     a client program must add itself to the notification chain if it
  3936.       provides services to other programs; before terminating, it must
  3937.       remove itself from the chain by calling the task switcher's entry
  3938.       point with AX=0005h (see #02819)
  3939.     the task switcher entry point should not be saved, as it is subject to
  3940.       change and will be provided on any notification call
  3941.     the Windows 3.1 Standard Mode supports this API
  3942. SeeAlso: AX=160Bh,AX=4B02h
  3943.  
  3944. Format of task switcher callback info structure:
  3945. Offset    Size    Description    (Table 02817)
  3946.  00h    DWORD    pointer to next callback info structure
  3947.  04h    DWORD    pointer to notification function (see #02818)
  3948.  08h    DWORD    reserved
  3949.  0Ch    DWORD    address of zero-terminated list of API info structures
  3950.         (see #02821)
  3951.  
  3952. (Table 02818)
  3953. Values task switcher notification function is called with:
  3954.     AX = function
  3955.         0000h switcher initialization
  3956.         Return: AX = status
  3957.                 0000h if OK to load
  3958.                 nonzero to abort task switcher
  3959.         0001h query suspend
  3960.         BX = session ID
  3961.         Return: AX = status
  3962.                 0000h if OK to switch session
  3963.                 0001h if not
  3964.         0002h suspend session
  3965.         BX = session ID
  3966.         interrupts disabled
  3967.         Return: AX = 0000h if OK to switch session
  3968.                = 0001h if not
  3969.         0003h activate session
  3970.         BX = session ID
  3971.         CX = session status flags
  3972.             bit 0: set if first activation of session
  3973.             bits 1-15: reserved (0)
  3974.         interrupts disabled
  3975.         Return: AX = 0000h
  3976.         0004h session active
  3977.         BX = session ID
  3978.         CX = session status flags
  3979.             bit 0: set if first activation of session
  3980.             bits 1-15: reserved (0)
  3981.         Return: AX = 0000h
  3982.         0005h create session
  3983.         BX = session ID
  3984.         Return: AX = 0000h if OK to create session
  3985.                = 0001h if not
  3986.         0006h destroy session
  3987.         BX = session ID
  3988.         Return: AX = 0000h
  3989.         0007h switcher termination
  3990.         BX = flags
  3991.             bit 0: set if calling switcher is only switcher loaded
  3992.             bits 1-15: reserved (0)
  3993.         Return: AX = 0000h
  3994.     ES:DI -> task switcher entry point (see #02819)
  3995. Notes:    function 0000h is generally called by the program which controls or
  3996.       invokes the task switcher, rather than by the task switcher itself;
  3997.       the entry point supplied to this function is not necessarily the
  3998.       entry point to the task switcher itself, and may be 0000h:0000h.  If
  3999.       any client indicates that loading is not possible, all clients will
  4000.       be called with function 0007h; thus it is possible for a client to
  4001.       receive a termination notice without a corresponding initialization
  4002.       notice.
  4003.     except for functions 0002h and 0003h, the notification handler is
  4004.       called with interrupts enabled and may make any INT 21h function
  4005.       call; interrupts must not be enabled in functions 0002h and 0003h
  4006.     function 0007h may be called with ES:DI = 0000h:0000h if the entry
  4007.       point is no longer valid
  4008. --------T-2F4B02BX0000-----------------------
  4009. INT 2F - DOS 5+ TASK SWITCHER - INSTALLATION CHECK
  4010.     AX = 4B02h
  4011.     BX = 0000h
  4012.     ES:DI = 0000h:0000h
  4013. Return: ES:DI = 0000h:0000h if task switcher not loaded
  4014.     ES:DI -> task switcher entry point (see #02819) if loaded
  4015.         AX = 0000h
  4016. Notes:    the returned entry point is that for the most-recently loaded task
  4017.       switcher; the entry points for prior task switchers may be determined
  4018.       with the "get version" call (see #02819)
  4019.     this function is supported by PC Tools v8+ CPTASK
  4020. SeeAlso: AX=4A05h,AX=4B03h
  4021.  
  4022. (Table 02819)
  4023. Call task switcher entry point with:
  4024.     AX = 0000h get version
  4025.         Return: CF clear if successful
  4026.                 AX = 0000h
  4027.                 ES:BX -> task switcher version struct (see #02820)
  4028.             CF set if unsupported function
  4029.     AX = 0001h test memory region
  4030.         ES:DI -> first byte to be tested
  4031.         CX = size of region to test
  4032.         Return: CF clear if successful
  4033.                 AX = memory type of tested region
  4034.                 0000h global
  4035.                 0001h global and local
  4036.                 0002h local (replaced on session switch)
  4037.             CF set if unsupported function
  4038.     AX = 0002h suspend switcher
  4039.         ES:DI -> new task switcher's entry point
  4040.         Return: CF clear if successful
  4041.                 AX = state
  4042.                 0000h switcher has been suspended
  4043.                 0001h switcher not suspended, new switcher must
  4044.                     abort
  4045.                 0002h switcher not suspended, but new switcher
  4046.                     may run anyway
  4047.             CF set if unsupported function
  4048.     AX = 0003h resume switcher
  4049.         ES:DI -> new task switcher's entry point
  4050.         Return: CF clear if successful
  4051.                 AX = 0000h
  4052.             CF set if unsupported function
  4053.     AX = 0004h hook notification chain
  4054.         ES:DI -> callback info structure to be added to chain
  4055.               (see #02817)
  4056.         Return: CF clear if successful
  4057.                 AX = 0000h
  4058.             CF set if unsupported function
  4059.     AX = 0005h unhook notification chain
  4060.         ES:DI -> callback info structure to be removed from chain
  4061.               (see #02817)
  4062.         Return: CF clear if successful
  4063.                 AX = 0000h
  4064.             CF set if unsupported function
  4065.     AX = 0006h query API support
  4066.         BX = asynchronous API identifier
  4067.         Return: CF clear if successful
  4068.                 AX = 0000h
  4069.                 ES:BX -> API info structure (see #02821) for the
  4070.                       client which provides the highest
  4071.                       level of API support
  4072.             CF set if unsupported function
  4073.  
  4074. Format of task switcher version structure:
  4075. Offset    Size    Description    (Table 02820)
  4076.  00h    WORD    major version of supported protocol  (current protocol is 1.0)
  4077.  02h    WORD    minor version of supported protocol
  4078.  04h    WORD    major version of task switcher
  4079.  06h    WORD    minor version of task switcher
  4080.  08h    WORD    task switcher ID (see AX=4B03h)
  4081.  0Ah    WORD    operation flags
  4082.         bit 0: set if task switcher disabled
  4083.         bits 1-15: reserved (0)
  4084.  0Ch    DWORD    pointer to ASCIZ task switcher name
  4085.         ("MS-DOS Shell Task Switcher" for DOSSHELL task switcher)
  4086.  10h    DWORD    pointer to previous task switcher's entry point or 0000h:0000h
  4087.  
  4088. Format of API info structure:
  4089. Offset    Size    Description    (Table 02821)
  4090.  00h    WORD    size of structure in bytes (000Ah)
  4091.  02h    WORD    API identifier
  4092.         0001h NetBIOS
  4093.         0002h 802.2
  4094.         0003h TCP/IP
  4095.         0004h LAN Manager named pipes
  4096.         0005h Novell NetWare IPX
  4097.  04h    WORD    major version \ of highest version of API for which the support
  4098.  06h    WORD    minor version / level specified in the next field is provided
  4099.  08h    WORD    support level
  4100.         0001h minimal support
  4101.         0002h API-level support
  4102.         0003h switcher compatibility
  4103.         0004h seamless compatibility
  4104. --------T-2F4B03-----------------------------
  4105. INT 2F - DOS 5+ TASK SWITCHER - ALLOCATE SWITCHER ID
  4106.     AX = 4B03h
  4107.     ES:DI -> task switcher entry point (see #02819)
  4108. Return: AX = 0000h
  4109.     BX = switcher ID (0001h-000Fh), or 0000h if no more available
  4110. Notes:    if a task switcher has determined that it is the first to be loaded, it
  4111.       must allocate an identifier for itself and provide this function to
  4112.       all subsequent task switchers; if it is not the first to be loaded,
  4113.       it must call this function to allocate an ID.     The switcher ID is
  4114.       used as the high four bits of all session identifiers to ensure
  4115.       unique session IDs.
  4116.     if no more switcher IDs are available, the new task switcher making the
  4117.       call must terminate or disable itself
  4118.     the task switcher providing the identifiers may call the new task
  4119.       switcher's entry point as needed
  4120.     this call is available from within DOSSHELL even if the task switcher
  4121.       is not installed
  4122.     this function is supported by PC Tools v8+ CPTASK, but appears to
  4123.       always return an ID of 0000h
  4124. SeeAlso: AX=4B02h,AX=4B04h
  4125. --------T-2F4B04-----------------------------
  4126. INT 2F - DOS 5+ TASK SWITCHER - FREE SWITCHER ID
  4127.     AX = 4B04h
  4128.     BX = switcher ID
  4129.     ES:DI -> task switcher entry point (see #02819)
  4130. Return: AX = 0000h
  4131.     BX = status
  4132.         0000h successful
  4133.         other error (invalid ID or ID not allocated)
  4134. Notes:    called by a task switcher when it exits, unless it was the first loaded
  4135.       and is providing the support for AX=4B03h and AX=4B04h
  4136.     the task switcher providing the identifiers may call the terminating
  4137.       task switcher's entry point as needed
  4138.     this call is available from within DOSSHELL even if the task switcher
  4139.       is not installed
  4140.     this call is supported by PC Tools v8+ CPTASK, but appears to return
  4141.       sucessfully no matter which ID is given
  4142. SeeAlso: AX=4B02h,AX=4B03h
  4143. --------T-2F4B05-----------------------------
  4144. INT 2F C - DOS 5+ TASK SWITCHER - IDENTIFY INSTANCE DATA
  4145.     AX = 4B05h
  4146.     ES:BX = 0000h:0000h
  4147.     CX:DX -> task switcher entry point (see #02819)
  4148. Return: ES:BX -> startup info structure (see #02822) or 0000h:0000h
  4149. Notes:    called by task switcher
  4150.     clients with instance data should hook this call, pass it through to
  4151.       the previous handler with unchanged registers using a simulated
  4152.       interrupt.  On return, the client should create a startup info
  4153.       structure (see #02822), store the returned ES:BX in the "next"
  4154.       field, and return the address of the created structure in ES:BX
  4155.     all MS-DOS function calls are available from within this call
  4156.     this function is supported by Novell DOS 7 DOSKEY, with structure v3.00
  4157. SeeAlso: AX=1605h,AX=160Bh,AX=4B02h
  4158.  
  4159. Format of task switcher startup info structure:
  4160. Offset    Size    Description    (Table 02822)
  4161.  00h  2 BYTEs    major, minor version of info structure (03h,00h)
  4162.  02h    DWORD    pointer to next startup info structure or 0000h:0000h
  4163.  06h    DWORD    0000h:0000h (ignored)
  4164.  0Ah    DWORD    ignored
  4165.  0Eh    DWORD    pointer to instance data records (see #02823)
  4166.  
  4167. Format of one instance data record in array:
  4168. Offset    Size    Description    (Table 02823)
  4169.  00h    DWORD    address of instance data (end of array if 0000h:0000h)
  4170.  04h    WORD    size of instance data
  4171. --------W-2F4B06-----------------------------
  4172. INT 2F - MS Windows - WIN.COM - GET ??? POINTER TO WIN.COM
  4173.     AX = 4B06h
  4174. Return: AX = 0000h
  4175.     ES:BX -> ??? function in WIN.COM
  4176. Note:    the entry point is called with
  4177.         AX = 0001h or 0003h
  4178.         BX = ???
  4179. SeeAlso: AX=4B80h
  4180. --------W-2F4B20-----------------------------
  4181. INT 2F - MS Windows 3+ - WIN.COM - SET PROGRAM TO EXECUTE ON EXIT
  4182.     AX = 4B20h
  4183. Return: AX = 0000h if successful
  4184.         DX:CX -> 256-byte buffer for pathname and commandline (see #02824)
  4185. Notes:    when the Windows function ExitWindows is called with an exit code of
  4186.       44h, WIN.COM executes the program specified in the returned buffer
  4187.       and then restarts Windows
  4188.     the returned address is a real-mode segment:offset value
  4189. SeeAlso: AX=4B21h
  4190.  
  4191. Format of WIN.COM buffer:
  4192. Offset    Size    Description    (Table 02824)
  4193.  00h 128 BYTEs    commandline for program (count byte, command tail, 0Dh)
  4194.  80h 128 BYTEs    ASCIZ pathname of program to execute
  4195. Note:    the order above is for a Windows95 DOS box; it may be reversed under
  4196.       Windows 3.x
  4197. --------W-2F4B21-----------------------------
  4198. INT 2F - Windows95 - WIN.COM - GET NESTING LEVEL
  4199.     AX = 4B21h
  4200. Return: AH = 00h if WIN.COM already active
  4201.         AL = number of instances of WIN.COM in memory
  4202. SeeAlso: AX=4B20h
  4203. --------K-2F4B52-----------------------------
  4204. INT 2F - KeyRus v7.3 - API
  4205.     AX = 4B52h ('KR')
  4206.     BL = function number
  4207.         00h installation check
  4208.         Return: AL = 82h if installed
  4209.                 BH = major version number
  4210.                 BL = minor version number
  4211.                 ES destroyed
  4212.         01h get driver status
  4213.         Return: AL??? = current status (see #02825)
  4214.         02h set driver state
  4215.         AL = new driver state (see #02825)
  4216.         03h blank screen (if blanking enabled when TSR was loaded)
  4217.         04h unblank screen
  4218.         4Ch switch to English keyboard mode
  4219.         90h switch to Russian keyboard mode
  4220. Return:
  4221.  
  4222. Bitfields for KeyRus driver status:
  4223. Bit(s)    Description    (Table 02825)
  4224.  1-0    language mode
  4225.     00 Latin
  4226.     01 Russian
  4227.     10 Alternative
  4228.     11 unused
  4229.  2    allow character loading (if disabled, use ROM fonts)
  4230.  3    English keyboard support
  4231.  7-4    used internally (read-only)
  4232. --------W-2F4B80-----------------------------
  4233. INT 2F - MS Windows - WSWAP.EXE - RESET INTERNAL VARIABLES
  4234.     AX = 4B80h
  4235. Return: nothing
  4236. Note:    called by WINOLDAP.MOD
  4237. SeeAlso: AX=4B06h
  4238. --------p-2F4C-------------------------------
  4239. INT 2F U - Advanced Power Management
  4240.     AH = 4Ch
  4241.     AL = function
  4242.         00h version check
  4243.         01h suspend system requested
  4244.         FFh suspend/resume battery notification
  4245.     ???
  4246. Return: ???
  4247. ----------2F4D-------------------------------
  4248. INT 2F U - ???
  4249.     AH = 4Dh
  4250.     ???
  4251. Return: ???
  4252. Note:    reportedly called by Kana Kanji Converter and MSKK
  4253. --------N-2F4E53BL00-------------------------
  4254. INT 2F - SilverNET v2+ - INSTALLATION CHECK
  4255.     AX = 4E53h ("NS")
  4256.     BL = 00h (function "installation check")
  4257.     BH = module ID (see #02826)
  4258. Return: AX = 0000h if specified module installed
  4259.     BX = 4E53h if installed
  4260. Program: SilverNET is an SMB-compatible peer-to-peer NOS for DOS or
  4261.       Windows systems, by Net-Source, Inc. of Santa Clara, CA.
  4262. SeeAlso: AX=4E53h/BL=01h,AX=4E53h/BL=02h,AX=B800h,AX=B809h
  4263.  
  4264. (Table 02826)
  4265. Values for SilverNET module ID:
  4266.  01h    SilverCACHE
  4267.  02h    Workstation
  4268.  03h    NetBIOS
  4269.  04h    Peer
  4270.  20h    NS Share
  4271.  80h    NetWare help TSR
  4272. --------N-2F4E53BL01-------------------------
  4273. INT 2F - SilverNET - GET RUNTIME PARAMETER
  4274.     AX = 4E53h ("NS")
  4275.     BL = 01h (function "get runtime parameter")
  4276.     BH = module ID (see #02826)
  4277.     CX = parameter index (see #02827,#02829,#02830)
  4278. Return: AX = WORD value at specified index (see #02828)
  4279. Desc:    retrieve a word of data from the specified SilverNET module
  4280.  
  4281. (Table 02827)
  4282. Values for SilverNET Peer parameter index (* = read-only):
  4283.  00h *    maximum outstanding SMB buffers
  4284.  02h *    maximum logged-in nodes
  4285.  04h *    number of shareable resources
  4286.  06h *    number of characters to print per time slice
  4287.  08h *    number of printers that can be shared
  4288.  0Ah *    number of nodes logged in
  4289.  0Ch *    number of files to allow opened
  4290.  0Eh    how fast to despool (/PSLICE)
  4291.  10h    audit flag
  4292.  24h *    far pointer to resource table (each resource is 96 bytes in length)
  4293.  32h *    far pointer to SFT (internal if SilverNET files > CONFIG.SYS files,
  4294.     else DOS SFT)
  4295.  36h    spool flags (see #02828)
  4296. SeeAlso: #02829
  4297.  
  4298. Bitfields for spool flags:
  4299. Bit(s)    Description    (Table 02828)
  4300.  0    LPT1 needs despooling
  4301.  1    LPT2 needs despooling
  4302.  2    LPT2 needs despooling
  4303.  4    COM1 needs despooling
  4304.  5    COM2 needs despooling
  4305.  6    COM3 needs despooling
  4306. SeeAlso: #02827
  4307.  
  4308. (Table 02829)
  4309. Values for NS Share parameter index (* = read-only):
  4310.  00h    version number (high byte = minor, low byte = major)
  4311.  10h *    segment of first lock record (other records in consecutive paragraphs)
  4312.     (if PSP field = 0000h, lock record is free)
  4313.  12h *    maximum possible number of lock records
  4314.  14h *    starting segment of sharing buffer
  4315.     (NS Share's sharing records are identical to DOS SHARE except that
  4316.       fields which are normally offsets into SHARE are segment numbers)
  4317.  18h *    size of sharing buffer in paragraphs
  4318.  1Ah *    total free paragraphs in sharing buffer
  4319.  1Ch *    current number of shared files
  4320.  1Eh *    current number of locked records
  4321. SeeAlso: #02827,#02830
  4322.  
  4323. (Table 02830)
  4324. Values for Workstation parameter index (* = read-only):
  4325.  00h    version number (high byte = minor, low byte = major)
  4326.  02h *    size of each network buffer for file operations
  4327.  04h *    number of redirector file buffers
  4328.  06h *    size of each print cache buffer
  4329.  08h *    number of network LPT printers
  4330.  0Ch    flush time in ticks (idle time on network printer before flushing)
  4331.  0Eh    (16 WORDs) last active time for each printer
  4332.  2Eh *    stub segment if program split into two parts
  4333.  60h    receive name number for datagram listens
  4334.  62h *    18-byte machine name
  4335.  74h *    LASTDRIVE (01h = A:, etc.)
  4336.  7Ch    row number of message box on screen
  4337.  7Eh    message time in clock ticks
  4338.  82h *    number of network adapters in use
  4339.  84h    station ID broadcast flag (never set on redirectors)
  4340.  96h *    NetBIOS names left
  4341.  98h *    NCBs left
  4342.  9Ah *    sessions left
  4343.  A2h *    total number of network printers (LPT+COM)
  4344.  A4h *    number of serial network printers
  4345.  A8h *    segment containing file cache buffers
  4346.  AAh *    segment containing print cache buffers
  4347.  ACh *    bytes remaining free in HMA before program loaded
  4348.  AEh *    start of free memory in HMA
  4349.  B2h *    flag: using HMA
  4350. SeeAlso: #02829
  4351. --------N-2F4E53BL02-------------------------
  4352. INT 2F - SilverNET - SET RUNTIME PARAMETERS
  4353.     AX = 4E53h ("NS")
  4354.     BL = 02h (function "set runtime parameters")
  4355.     BH = module ID (see #02826)
  4356.     CX = parameter index (see #02829,#02830)
  4357.     DX = new value for specified parameter
  4358. Desc:    set a WORD value in the specified SilverNET module
  4359. Note:    not all indexed parameters are writable; modifying a read-only
  4360.       parameter can result in system crashes
  4361. SeeAlso: AX=4E53h/BL=00h,AX=4E53h/BL=01h
  4362. --------N-2F5100-----------------------------
  4363. INT 2F U - ODIHLP.EXE - INSTALLATION CHECK
  4364.     AX = 5100h
  4365. Return: AL = FFh if installed
  4366.         BX = 0000h
  4367.         DX:SI -> signature string "ODI$HLP$"
  4368. Program: ODIHLP is a real-mode helper allowing the Windows for Workgroups 3.11
  4369.       protected-mode NDIS3 protocol to work with real-mode ODI drivers
  4370.       and LSL.COM
  4371. Note:    the returned signature string might be the first field of a structure
  4372. SeeAlso: AX=C000h"LSL.COM"
  4373. --------k-2F5200-----------------------------
  4374. INT 2F - JAM.SYS v1.10+ - "GetVersion" - INSTALLATION CHECK
  4375.     AX = 5200h
  4376. Return: AH = 80h (successful) if installed
  4377.     BX = internal JAM.SYS version number
  4378.     CX = size of JAMINFO structure (see #02831,#02832)
  4379.     DX = JAM.SYS segment address
  4380. Program: JAM.SYS is a main component of the JAM Real-Time Data Compression
  4381.       Utilities by George A. Reznik and friends (JAM Software).
  4382. SeeAlso: AX=5201h
  4383.  
  4384. Format of JAMINFO v1.10 structure:
  4385. Offset    Size    Description    (Table 02831)
  4386.  00h 25 BYTEs    extended BIOS parameter block (BPB)
  4387.  19h 11 BYTEs    ???
  4388.  25h    DWORD    total number of sectors in JAM archive file
  4389.         (size of compressed data area)
  4390.  29h    BYTE    flags (see #02833)
  4391.  2Ah 127 BYTEs    full JAM archive file name
  4392.  A9h    WORD    the number of fragments in archive file
  4393.  ABh 96 BYTEs    archive file fragmentation list -
  4394.         array of 16 FRAGMENT structures (see #02834)
  4395. 10Bh    DWORD    address of the host-drive DPB (Drive Parameter Block)
  4396. 10Fh    DWORD    number of free sectors in JAM archive file
  4397. 113h    WORD    device status word (see #02835)
  4398. SeeAlso: #02832
  4399.  
  4400. Format of JAMINFO v1.20 structure:
  4401. Offset    Size    Description    (Table 02832)
  4402.  00h 25 BYTEs    extended BIOS parameter block (BPB)
  4403.  19h    BYTE    physical driver number
  4404.  1Ah    BYTE    reserved
  4405.  1Bh    BYTE    extended boot record signature
  4406.  1Ch    DWORD    volume serial number
  4407.  20h 11 BYTEs    volume label
  4408.  2Bh  8 BYTEs    file system ID
  4409.  33h    DWORD    total number of sectors in JAM archive file
  4410.         (size of compressed data area)
  4411.  37h    BYTE    flags (see #02833)
  4412.  38h 128 BYTEs    full JAM archive file name
  4413.  B8h    WORD    the number of fragments in archive file
  4414.  BAh 96 BYTEs    archive file fragmentation list -
  4415.         array of 16 FRAGMENT structures (see #02834)
  4416. 11Ah    DWORD    address of the host-drive DPB (Drive Parameter Block)
  4417. 11Eh    DWORD    number of free sectors in JAM archive file
  4418. 122h    WORD    device status word (see #02835)
  4419. Note:    the first 33h bytes are copied from the archive file's boot sector
  4420. SeeAlso: #02831
  4421.  
  4422. Bitfields for JAMINFO flags:
  4423. Bit(s)    Description    (Table 02833)
  4424.  2-0    reserved
  4425.  3    (v1.20+)
  4426.  4    enable direct write requests (Int 26h, non-DOS requests, etc.)
  4427.  5    read-only mode
  4428.  6    no write-behind caching
  4429.  7    full undelete-compatible allocation strategy
  4430. SeeAlso: #02831,#02832
  4431.  
  4432. Format of JAM FRAGMENT structure:
  4433. Offset    Size    Description    (Table 02834)
  4434.  00h    WORD    starting sector (low word)
  4435.  02h    BYTE    starting sector (high byte)
  4436.  03h    WORD    size of fragment (low word)
  4437.  05h    BYTE    size of fragment (high byte)
  4438. SeeAlso: #02831,#02832
  4439.  
  4440. (Table 02835)
  4441. Values for JAM.SYS status (high byte):
  4442.  00h    successful
  4443.  01h    drive is not a JAM drive
  4444.  02h    drive is already attached
  4445.  03h    archive file cluster size value is larger than driver's one
  4446.  04h    drive is not attached
  4447.  05h    drive is locked
  4448.  06h    drive is not locked
  4449.  07h    bad physical-level request
  4450.  08h    host drive reading/writing error
  4451.  09h    bad entries in JAM descriptor table
  4452.  0Ah    compressed data integrity error
  4453.  0Bh    archive file overflow
  4454.  0Ch    bad DOS request
  4455.  0Dh    incorrect parameters in JAMINFO structure
  4456. Note:    the low byte of the status is the DOS error code for the Host drive
  4457. SeeAlso: #02598 at INT 2F/AX=0802h
  4458. --------k-2F5201-----------------------------
  4459. INT 2F - JAM.SYS v1.10+ - "GetInfo" - GET COMPRESSED DRIVE INFORMATION
  4460.     AX = 5201h
  4461.     DL = compressed drive number (0-default, 1-A:, etc.)
  4462.     DS:BX -> buffer for JAMINFO structure (see #02831,#02832)
  4463. Return: AH = status (00h,01h) (see #02835)
  4464. SeeAlso: AX=5200h
  4465. --------k-2F5202-----------------------------
  4466. INT 2F - JAM.SYS v1.10+ - "Attach" - MOUNT COMPRESSED DRIVE
  4467.     AX = 5202h
  4468.     DL = drive number (0-default, 1-A:, etc.) to attach to the JAM
  4469.           archive file
  4470.     DS:BX -> pointer to JAMINFO structure (see #02831,#02832), which
  4471.           contains parameters of the JAM file to mount, and pointer
  4472.           to the host drive DPB (i.e. DPB of the drive on which the
  4473.           JAM file is located)
  4474. Return: AH = status (00h,02h,03h,08h,09h,0Dh) (see also #02835)
  4475.         03h archive file cluster size value is larger than driver's - not
  4476.           mounted
  4477.         09h bad entries in JAM descriptor table - file mounted read-only
  4478.     AL = host drive error code (see #02598 at INT 2F/AX=0802h)
  4479. SeeAlso: AX=5203h
  4480. --------k-2F5203-----------------------------
  4481. INT 2F - JAM.SYS v1.10+ - "Detach" - UNMOUNT COMPRESSED DRIVE
  4482.     AX = 5203h
  4483.     DL = drive number (0-default, 1-A:, etc.) to detach
  4484. Return: AH = status (00h,01h,04h,05h,08h,09h,0Bh,0Dh) (see #02835)
  4485.     AL = host drive error code (see #02598 at INT 2F/AX=0802h)
  4486. SeeAlso: AX=5202h
  4487. --------k-2F5204-----------------------------
  4488. INT 2F - JAM.SYS v1.10+ - "Lock" - LOCK COMPRESSED DRIVE
  4489.     AX = 5204h
  4490.     DL = drive number (0-default, 1-A:, etc.) to lock
  4491. Return: AH = status (00h,01h,04h,05h,08h,09h,0Bh,0Dh) (see #02835)
  4492.     AL = host drive error code (see #02598 at INT 2F/AX=0802h)
  4493. SeeAlso: AX=5205h, AX=5206h, AX=5207h
  4494. --------k-2F5205-----------------------------
  4495. INT 2F - JAM.SYS v1.10+ - "UnLock" - UNLOCK COMPRESSED DRIVE
  4496.     AX = 5205h
  4497.     DL = drive number (0-default, 1-A:, etc.) to unlock
  4498. Return: AH = status (00h,01h,04h,06h,08h,09h,0Dh) (see #02835)
  4499.     AL = host drive error code (see #02598 at INT 2F/AX=0802h)
  4500. SeeAlso: AX=5204h, AX=5206h, AX=5207h
  4501. Note:    Lock and UnLock functions were added to the JAM API to prevent
  4502.       asynchronous physical-level access (see AX=5206h,AX=5207h) to
  4503.       compressed data on JAM drives. In other words, two or more programs
  4504.       which use JAM API (say, JMAX optimizer and JCHKDSK - disk checker)
  4505.       cannot be run on the same JAM drive simultaneously.
  4506. --------k-2F5206-----------------------------
  4507. INT 2F - JAM.SYS v1.10+ - "Read" - PHYSICAL READ DATA FROM JAM ARCHIVE
  4508.     AX = 5206h
  4509.     DL = drive number (0-default, 1-A:, etc.)
  4510.     DS:BX -> disk transfer packet (see #02836)
  4511. Return: AH = status (00h,01h,04h,06h,07h,08h,0Dh) (see #02835)
  4512.     AL = host drive error code (see #02598 at INT 2F/AX=0802h)
  4513. Program: JAM.SYS is a main component of the JAM Real-Time Data Compression
  4514.       Utilities by George A. Reznik and friends (JAM Software).
  4515. SeeAlso: AX=5207h
  4516.  
  4517. Format of disk transfer packet:
  4518. Offset    Size    Description    (Table 02836)
  4519.  00h    DWORD    sector number
  4520.  04h    WORD    number of sectors to read(write)
  4521.  06h    DWORD    transfer address
  4522. --------k-2F5207-----------------------------
  4523. INT 2F - JAM.SYS v1.10+ - "Write" - PHYSICAL WRITE DATA TO JAM ARCHIVE
  4524.     AX = 5207h
  4525.     DL = drive number (0-default, 1-A:, etc.)
  4526.     DS:BX -> disk transfer packet (see #02836)
  4527. Return: AH = status (00h,01h,04h,06h,07h,08h,0Dh) (see #02835)
  4528.     AL = host drive error code (see #02598 at INT 2F/AX=0802h)
  4529. SeeAlso: AX=5206h
  4530. --------p-2F53-------------------------------
  4531. INT 2F U - POWER.EXE - APM event broadcasting???
  4532.     AH = 53h
  4533.     AL = event???
  4534.         05h CPU idle
  4535.         0Bh PM event broadcast API
  4536. Return: ???
  4537. Note:    called by MS Windows 3.1 POWER.DRV; hooked by MS Mouse driver v8.20+
  4538.       and PC-Cache v8.0
  4539. SeeAlso: AX=530Bh,AX=5400h,INT 33/AX=002Fh
  4540. --------p-2F530B-----------------------------
  4541. INT 2F U - ??? (MOUSEPWR.COM, others) - ???
  4542.     AX = 530Bh
  4543.     BX = subfunction
  4544.         0003h ???
  4545.         0004h ???
  4546.     ???
  4547. Return: ???
  4548. Note:    it appears that subfunction 0003h reads or restores the current mouse
  4549.       settings (the MS Mouse driver hooks AX=530Bh), and 0004h might be
  4550.       the converse
  4551. --------p-2F5400-----------------------------
  4552. INT 2F U - POWER.EXE - INSTALLATION CHECK
  4553.     AX = 5400h
  4554. Return: AX = POWER.EXE version (AH = major, AL = minor) if installed
  4555.     BX = 504Dh ("PM")
  4556.     CF clear
  4557. Note:    called by MS Windows 3.1 POWER.DRV
  4558. SeeAlso: AH=53h,AX=5401h,AX=5402h,AX=5481h,AX=5482h
  4559. --------p-2F5401-----------------------------
  4560. INT 2F U - POWER.EXE - GET/SET POWER STATUS
  4561.     AX = 5401h
  4562.     BH = function
  4563.         00h get status
  4564.         Return: BL = current power management status (see #02837)
  4565.         01h set status
  4566.         BL = new power managment status (see #02837)
  4567. Return: AX = function status (see #02838)
  4568. Note:    called by MS Windows 3.1 POWER.DRV
  4569. SeeAlso: AH=53h,AX=5400h,AX=5402h,AX=5403h
  4570.  
  4571. Bitfields for power management status:
  4572. Bit(s)    Description    (Table 02837)
  4573.  0    POWER.EXE power management enabled
  4574.  1    APM firmware power management enabled
  4575.  2-7    reserved (0)
  4576. Notes:    bit 1 is ignored if there is no APM firmware
  4577.     bits 1-0: 00 = POWER OFF, 10 = POWER STD, 11 = POWER ADV
  4578.  
  4579. (Table 02838)
  4580. Values for POWER.EXE function status:
  4581.  0000h    successful
  4582.  0002h    "ERROR_PM_ALREADY_CONNECTED"
  4583.  0003h    "ERROR_PM_NOT_CONNECTED"
  4584.  0087h    "ERROR_PM_INVALID_PARAMETER"
  4585. --------p-2F5402-----------------------------
  4586. INT 2F U - POWER.EXE - GET/SET IDLE DETECTION STRATEGY
  4587.     AX = 5402h
  4588.     BH = subfunction
  4589.         00h get
  4590.         other set
  4591.         BL = detection strategy (00h-0Fh or FFh)
  4592. Return: BX = current/new detection strategy
  4593. SeeAlso: AH=53h,AX=5400h,AX=5401h,AX=5481h,AX=5482h
  4594. --------p-2F5403-----------------------------
  4595. INT 2F U - POWER.EXE - GET/SET ADVANCED POWER MANAGEMENT SETTING
  4596.     AX = 5403h
  4597.     BX = new power management setting or 0000h to get current setting
  4598. Return: AX = status
  4599.         0000h successful
  4600.         BX = power management setting (see #02839)
  4601.         other error code
  4602. SeeAlso: AX=5401h,AX=5480h
  4603.  
  4604. (Table 02839)
  4605. Values for power management setting:
  4606.  0001h-0005h "min"
  4607.  0006h         "reg"
  4608.  0007h-0008h "max"
  4609. --------t-2F5453-----------------------------
  4610. INT 2F - TesSeRact RAM-RESIDENT PROGRAM INTERFACE
  4611.     AX = 5453h
  4612.     BX = subfunction
  4613.         00h installation check
  4614.         CX = 0000h
  4615.         DS:SI -> 8-char blank-padded name (see #02840)
  4616.         Return: AX = FFFFh installed
  4617.                 CX = ID number of already-installed copy
  4618.             AX = anything else, not installed
  4619.                 CX = ID number for TSR when installed
  4620.         01h get user parameters
  4621.         CX = TSR ID number
  4622.         Return: AX = status
  4623.                 0000h successful
  4624.                 ES:BX -> user parameter block (see #02841)
  4625.                 nonzero failed
  4626.         02h check if hotkey in use
  4627.         CL = scan code of hot key (see #00006)
  4628.         Return: AX = FFFFh hot key conflicts with another TSR
  4629.                  otherwise safe to use the hotkey
  4630.         03h replace default critical error handler
  4631.         CX = TSR ID number
  4632.         DS:SI -> new routine for INT 24h
  4633.         Return: AX = nonzero, unable to install new handler
  4634.         04h get internal data area
  4635.         CX = TSR ID number
  4636.         Return: AX = status
  4637.                 0000h successful
  4638.                 ES:BX -> TSR's internal data area (see #02842)
  4639.                 nonzero, TSR not found
  4640.         05h set multiple hot keys
  4641.         CX = TSR ID number
  4642.         DL = number of additional hot keys to allocate
  4643.         DS:SI -> table of hot keys
  4644.             BYTE  hotkey scan code (see #00006)
  4645.             BYTE  hotkey shift state
  4646.             BYTE  flag value to pass to TSR (nonzero)
  4647.         Return: AX = nonzero, unable to install hot keys
  4648.         06h - 0Fh reserved
  4649.         10h enable TSR
  4650.         CX = TSR ID number
  4651.         Return: AX = nonzero, unable to enable
  4652.         11h disable TSR
  4653.         CX = TSR ID number
  4654.         Return: AX = nonzero, unable to disable
  4655.         12h unload TSR
  4656.         CX = TSR ID number
  4657.         Return: AX = nonzero, invalid TSR number
  4658.         Note: if any interrupts used by TSR have been grabbed by
  4659.             another TSR, the TesSeRact routines will wait until
  4660.             it is safe to remove the indicated TSR from memory
  4661.         13h restart TSR
  4662.         CX = TSR ID number of TSR which was unloaded but is still in
  4663.              memory
  4664.         Return: AX = nonzero, unable to restart TSR
  4665.         14h get status word
  4666.         CX = TSR ID number
  4667.         Return: AX = FFFFh invalid ID number
  4668.                = other, successful
  4669.                 BX = bit flags
  4670.         15h set status word
  4671.         CX = TSR ID number
  4672.         DX = new bit flags
  4673.         Return: AX = nonzero, unable to set status word
  4674.         16h get INDOS state at popup
  4675.         CX = TSR ID number
  4676.         Return: AX = 0000h successful
  4677.                 BX = value of INDOS flag
  4678.         17h - 1Fh reserved
  4679.         20h call user procedure
  4680.         CX = TSR ID number
  4681.         ES:DI -> user-defined data
  4682.         Return: AX = 0000h successful
  4683.         21h stuff keystrokes into keyboard buffer
  4684.         CX = TSR ID number
  4685.         DL = speed
  4686.             00h stuff keystrokes only when buffer is empty
  4687.             01h stuff up to four keystrokes per clock tick
  4688.             02h stuff up to 15 keystrokes per clock tick
  4689.         DH = scan code flag
  4690.             if zero, buffer contains alternating ASCII and scan codes
  4691.             if nonzero, buffer contains only ASCII codes
  4692.         SI = number of keystrokes
  4693.         ES:DI -> buffer to stuff
  4694.         Return: AX = 0000h success
  4695.                  F0F0h user aborted with ^C or ^Break
  4696.                  other unable to stuff keystrokes
  4697.         22h (v1.10) trigger popup
  4698.         CX = TSR ID number
  4699.         Return: AX = 0000h success, TSR will either pop up or beep to
  4700.                    indicate that it is unable to pop up
  4701.                  nonzero invalid ID number
  4702.         23h (v1.10) invoke TSR's background function
  4703.         CX = TSR ID number
  4704.         Return: AX = 0000h success
  4705.                  FFFFh not safe to call background function
  4706.                  nonzero invalid ID number
  4707.         24h - 2Fh reserved
  4708. Notes:    Borland's THELP.COM popup help system for Turbo Pascal and Turbo C
  4709.       (versions 1.x and 2.x only) fully supports the TesSeRact API, as
  4710.       do the SWAP?? programs by Innovative Data Concepts.
  4711.     AVATAR.SYS supports functions 00h and 01h (only the first three fields
  4712.       of the user parameter block) using the name "AVATAR  "
  4713. SeeAlso: AX=CAFEh,INT 16/AX=55FFh,INT 2D"AMIS"
  4714. Index:    installation check;TesSeRact TSR interface|uninstall;TesSeRact
  4715.  
  4716. (Table 02840)
  4717. Values for TesSeRact names:
  4718.  "AVATAR  "    AVATAR.SYS
  4719.  "QeditTSR"    TSR version of SemWare's Qedit editor
  4720.  "SCRNBLNK"    Trusted Access screen blanker
  4721.  
  4722. Format of TesSeRact User Parameter Block:
  4723. Offset    Size    Description    (Table 02841)
  4724.  00h  8 BYTEs    blank-padded TSR name
  4725.  08h    WORD    TSR ID number
  4726.  0Ah    DWORD    bitmap of supported functions
  4727.  0Eh    BYTE    scan code of primary hotkey (see #00006)
  4728.         00h = pop up when shift states match
  4729.         FFh = no popup (if shift state also FFh)
  4730.  0Fh    BYTE    shift state of primary hotkey
  4731.         FFh = no popup (if scan code also FFh)
  4732.  10h    BYTE    number of secondary hotkeys
  4733.  11h    DWORD    pointer to extra hotkeys set by func 05h
  4734.  15h    WORD    current TSR status flags
  4735.  17h    WORD    PSP segment of TSR
  4736.  19h    DWORD    DTA for TSR
  4737.  1Dh    WORD    default DS for TSR
  4738.  1Fh    DWORD    stack at popup
  4739.  23h    DWORD    stack at background invocation
  4740. Index:    hotkeys;TesSeRact TSR interface
  4741.  
  4742. Format of TSR internal data area:
  4743. Offset    Size    Description    (Table 02842)
  4744.  00h    BYTE    revision level of TesSeRact library
  4745.  01h    BYTE    type of popup in effect
  4746.  02h    BYTE    INT 08 occurred since last invocation
  4747.  03h    BYTE    INT 13 occurred since last invocation
  4748.  04h    BYTE    active interrupts
  4749.  05h    BYTE    active soft interrupts
  4750.  06h    BYTE    DOS major version
  4751.  07h    BYTE    how long to wait before popping up
  4752.  08h    DWORD    pointer to INDOS flag
  4753.  0CH    DWORD    pointer to DOS critical error flag
  4754.  10h    WORD    PSP segment of interrupted program
  4755.  12h    WORD    PSP segment of prog interrupted by INT 28
  4756.  14h    DWORD    DTA of interrupted program
  4757.  18h    DWORD    DTA of program interrupted by INT 28
  4758.  1Ch    WORD    SS of interrupted program
  4759.  1Eh    WORD    SP of interrupted program
  4760.  20h    WORD    SS of program interrupted by INT 28
  4761.  22h    WORD    SP of program interrupted by INT 28
  4762.  24h    DWORD    INT 24 of interrupted program
  4763.  28h  3 WORDs    DOS 3.0+ extended error info
  4764.  2Eh    BYTE    old BREAK setting
  4765.  2Fh    BYTE    old VERIFY setting
  4766.  30h    BYTE    were running MS WORD 4.0 before popup
  4767.  31h    BYTE    MS WORD 4.0 special popup flag
  4768.  32h    BYTE    enhanced keyboard call in use
  4769.  33h    BYTE    delay for MS WORD 4.0
  4770. 11 times (for INTs 08h,09h,13h,16h,1Ch,21h,28h,2Fh,1Bh,23h, and 24h):
  4771.     DWORD    old interrupt vector
  4772.     BYTE    interrupt number
  4773.     WORD    offset in TesSeRact code segment of new interrupt handler
  4774. --------p-2F5480-----------------------------
  4775. INT 2F U - POWER.EXE - GET/SET ???
  4776.     AX = 5480h
  4777.     BX = direction
  4778.         0000h get
  4779.         other set
  4780.     CX = size of buffer (at least 0010h)
  4781.     DS:SI -> buffer
  4782. Return: AX = status
  4783.         0000h successful
  4784.         other error code
  4785. SeeAlso: AX=5400h,AX=5481h,AX=548Fh
  4786. --------p-2F5481-----------------------------
  4787. INT 2F U - POWER.EXE - GET STATISTICS
  4788.     AX = 5481h
  4789.     BX = which statistics
  4790.         0000h idle detection
  4791.         0001h APM statistics
  4792.     CX = length of buffer in bytes
  4793.     DS:SI -> buffer for statistics (see #02843,#02844)
  4794. Return: AX = status
  4795.         0000h successful
  4796.         0071h "ERROR_PM_BUFFER_TOO_SMALL"
  4797.         0087h "ERROR_PM_INVALID_PARAMETER"
  4798. SeeAlso: AH=53h,AX=5400h,AX=5480h,AX=5402h,AX=5482h
  4799.  
  4800. Format of POWER.EXE idle detection statistics:
  4801. Offset    Size    Description    (Table 02843)
  4802.  00h    DWORD    "CPU_ON_TIME" total time CPU is active with POWER.EXE idle
  4803.           detection enabled, in timer ticks
  4804.  04h    DWORD    "CPU_IDLE_TIME" timer ticks during which CPU was idle
  4805.         (divide by previous to get idle    rate)
  4806.  08h    DWORD    total idle calls
  4807.  0Ch    DWORD    "TOTAL_APP_IDLE" total INT 2Fh idle calls
  4808.  10h    DWORD    "TOTAL_DOS_YIELD" total INT 28h idle calls
  4809.  14h    DWORD    "TOTAL_KEY_IDLE" total INT 16h idle calls
  4810.  18h    DWORD    "TOTAL_DOS_IDLE" total INT 2Ah idle calls
  4811.  
  4812. Format of APM statistics:
  4813. Offset    Size    Description    (Table 02844)
  4814.  00h    DWORD    "RESUME_COUNT" total number of resumes since last APM_ENABLE
  4815. --------p-2F5482-----------------------------
  4816. INT 2F U - POWER.EXE - GET/SET APM POLLING FREQUENCY
  4817.     AX = 5482h
  4818.     BX = new polling frequency or 0000h to get current frequency
  4819. Return: AX = 0000h (successful)
  4820.     BX = current frequency if BX=0000h on entry
  4821. SeeAlso: AH=53h,AX=5400h,AX=5401h,AX=5480h,AX=5481h,AX=548Fh
  4822. --------p-2F548F-----------------------------
  4823. INT 2F U - POWER.EXE - GET/SET ???
  4824.     AX = 548Fh
  4825.     BX = ??? or 0000h to get current ???
  4826. Return: AX = 0000h (successful)
  4827.     BX = current ???
  4828.     CX = ???
  4829. SeeAlso: AX=5400h,AX=5480h,AX=5482h
  4830. --------l-2F5500-----------------------------
  4831. INT 2F U - DOS 5+ - COMMAND.COM INTERFACE
  4832.     AX = 5500h
  4833. Return: AX = 0000h if an instance of COMMAND.COM is already running
  4834.     DS:SI -> entry point table
  4835. Notes:    used to access the shareable portion of COMMAND.COM, which may have
  4836.       been moved into the HMA; only the primary COMMAND.COM retains this
  4837.       portion
  4838.     procedures called from a dispatcher in COMMAND's resident portion;
  4839.       most assume that the segment address of the resident portion is on
  4840.       the stack and are thus not of general use
  4841. SeeAlso: AX=5501h
  4842. --------l-2F5501-----------------------------
  4843. INT 2F U - DOS 5+ - ROM COMMAND.COM INTERFACE
  4844.     AX = 5501h
  4845. Return: ???
  4846. Note:    used to determine whether the caller is the first instance of ROM
  4847.       COMMAND.COM
  4848. SeeAlso: AX=5500h
  4849. --------R-2F5600-----------------------------
  4850. INT 2F - INTERLNK - INSTALLATION CHECK
  4851.     AX = 5600h
  4852.     DX = magic value FFFFh
  4853.     BL = instance number (00h = any, 01h = first loaded, etc.)
  4854. Return: AL = FFh if installed
  4855.         BL = instance number
  4856.         CX = version number (CL = major, CH = minor)
  4857.         DX = resident CS of driver, DX:0000h -> header (see #02845)
  4858. SeeAlso: AX=5601h,AX=5602h,INT 60/AX=0000h
  4859.  
  4860. Format of Interlnk device driver header:
  4861. Offset    Size    Description    (Table 02845)
  4862.  00h    DWORD    pointer to next driver, offset=FFFFh if last driver
  4863.  04h    WORD    device attributes (see #01647,#01648)
  4864.  06h    WORD    device strategy entry point
  4865.  08h    WORD    device interrupt entry point
  4866.  0Ah  8 BYTEs    character device name "NUL2    "
  4867.  12h 165 BYTEs    ???
  4868.  B7h 67 BYTEs    fully qualified Interlnk filename
  4869.  FAh  6 BYTEs    ???
  4870. 100h    DWORD    pointer back to Interlnk filename at offset B7h
  4871. 104h  8 BYTEs    ???
  4872. 10Ch    BYTE    total number of redirected drives
  4873. 10Dh    BYTE    first local drive number (0=A:)
  4874. 10Eh    BYTE    printer redirection (0=no, 1=yes)
  4875. 10Fh    BYTE    ???
  4876. 110h  3    BYTEs    LPT1...3 status (0FFh=invalid)
  4877. 113h 26 BYTEs    remote drive number (0=A:, 0FEh=unused) (refer to note below)
  4878. 12Dh 26 BYTEs    always 0FEh ???
  4879. 147h 26 BYTEs    always 0FFh ???
  4880. Note:    to obtain the remote drive number, subtract the value at offset 10Ch
  4881.       from the local drive number before indexing into the table at 113h
  4882.       (example: if local drives F, G, H are remote drives C, F, E then
  4883.       the first three bytes at offset 113h are 02h, 05h, 04h)
  4884.     for each instance of Interlnk, an extra device driver is loaded, but
  4885.       all have the same device name NUL2
  4886. SeeAlso: #01646 at INT 21/AH=52h
  4887. --------R-2F5601-----------------------------
  4888. INT 2F - INTERLNK - CHECK IF REDIRECTED DRIVE
  4889.     AX = 5601h
  4890.     DX = magic value FFFFh
  4891.     BH = drive number (0=A:)
  4892.     BL = instance number (00h=any, 01h=first loaded, etc.)
  4893. Return: (as for AL=00h if redirected drive)
  4894. SeeAlso: AX=5600h,AX=5601h
  4895. --------R-2F5602-----------------------------
  4896. INT 2F - INTERLNK - CHECK IF PORT IN USE
  4897.     AX = 5602h
  4898.     DX = magic value FFFFh
  4899.     BL = instance number (00h=any, 01h=first loaded, etc.)
  4900.     CX = base port address of COM / LPT port to check
  4901. Return: (as for AL=00h if port in use for a redirected drive)
  4902. SeeAlso: AX=5600h
  4903. --------d-2F5700-----------------------------
  4904. INT 2F U - IOMEGA DRIVERS - INSTALLATION CHECK
  4905.     AX = 5700h
  4906.     BX = program ID??? (0201h used by GUEST.EXE)
  4907.     DX = 496Fh ('Io')
  4908. Return: AL = status
  4909.         00h not installed
  4910.         FFh installed
  4911. SeeAlso: AX=5701h,AX=5710h,AX=5711h,AX=5712h
  4912. --------d-2F5701-----------------------------
  4913. INT 2F U - IOMEGA DRIVERS - ???
  4914.     AX = 5701h
  4915.     BX = program ID??? (0201h used by GUEST.EXE)
  4916.     DX = 496Fh ('Io')
  4917. Return: AX = 0001h
  4918. SeeAlso: AX=5700h,AX=5710h,AX=5711h,AX=5712h
  4919. --------d-2F5710-----------------------------
  4920. INT 2F U - IOMEGA DRIVERS - GET DRIVER INFORMATION???
  4921.     AX = 5710h
  4922.     BX = program ID??? (0201h used by GUEST.EXE)
  4923.     DX = 496Fh ('Io')
  4924. Return: AX = ??? (BX ORed with ???)
  4925.     BX = ??? (internal variable)
  4926.     CX = ??? (internal variable)
  4927.     DX = ??? (CX ORed with ???)
  4928. SeeAlso: AX=5700h,AX=5701h,AX=5711h,AX=5712h
  4929. --------d-2F5711-----------------------------
  4930. INT 2F U - IOMEGA DRIVERS - LOCK MEDIA IN DRIVE
  4931.     AX = 5711h
  4932.     BX = program ID??? (0201h used by GUEST.EXE)
  4933.     DX = 496Fh ('Io')
  4934. Return: CF clear if successful (storage medium in drive)
  4935.         AX = new lock count
  4936.     CF set on error (drive empty)
  4937. SeeAlso: AX=5700h,AX=5701h,AX=5710h,AX=5712h
  4938. --------d-2F5712-----------------------------
  4939. INT 2F U - IOMEGA DRIVERS - UNLOCK MEDIA IN DRIVE / EJECT
  4940.     AX = 5712h
  4941.     BX = program ID??? (0201h used by GUEST.EXE)
  4942.     DX = 496Fh ('Io')
  4943. Return: AX = new lock count (00h = unlocked)
  4944. Note:    if the lock count was already zero, the storage medium is ejected
  4945.       from the drive
  4946. SeeAlso: AX=5700h,AX=5701h,AX=5710h,AX=5711h
  4947. --------c-2F5758BX4858-----------------------
  4948. INT 2F U - Helix Multimedia Cloaking - CACHECLK - INSTALLATION CHECK
  4949.     AX = 5758h
  4950.     BX = 4858h ('HX')
  4951.     DX = 4443h ('DC')
  4952.     CX <> 5758h
  4953. Return: BX = 6878h if installed
  4954.     DX = 6463h if installed
  4955.        CX = version (CH=major,CL=minor)
  4956. Program: CACHECLK is a 'Cloaked' disk cache by Helix Software
  4957. Note:    returns with registers unchanged if CX=5758h on entry
  4958. SeeAlso: INT 16/AX=5758h/BX=4858h,INT 2F/AX=4310h"Cloaking"
  4959. --------X-2F5D00-----------------------------
  4960. INT 2F U - PCMCIA - AWARD PCDISK - GET INFO FROM DRIVER ???
  4961.     AX = 5D00h
  4962. Return: ES:BX -> ???
  4963. Note:    supported by Ventura Micro / Award PCDISK.EXE v1.02c PCMCIA/ATA driver
  4964. SeeAlso: AX=5D01h,INT 21/AX=440Dh"DOS 3.2+"
  4965. --------X-2F5D01-----------------------------
  4966. INT 2F U - PCMCIA - AWARD PCDISK - PUT INFO INTO DRIVER ???
  4967.     AX = 5D01h
  4968.     ES:BX -> ???
  4969. Return: nothing
  4970. Note:    supported by Ventura Micro / Award PCDISK.EXE v1.02c PCMCIA/ATA driver
  4971. SeeAlso: AX=5D00h,INT 21/AX=440Dh"DOS 3.2+"
  4972. --------s-2F60FFDL00-------------------------
  4973. INT 2F U - IPLAY v1.00b - INSTALLATION CHECK
  4974.     AX = 60FFh
  4975.     DL = 00h (function number)
  4976.     BX = 5344h ('SD')
  4977.     CX = 4D50h ('MP')
  4978. Return: AX = 4F4Bh ('OK') if installed
  4979. Program: IPLAY is the Inertia Player by Prime and Excalibur for .MODules
  4980.       (digitized music files)
  4981. Note:    in version 1.00b, any value for DL except 01h invokes this function
  4982. SeeAlso: AX=60FFh/DL=01h
  4983. --------s-2F60FFDL01-------------------------
  4984. INT 2F U - IPLAY v1.00b - GET DATA SEGMENT
  4985.     AX = 60FFh
  4986.     DL = 01h (function number)
  4987.     BX = 5344h ('SD')
  4988.     CX = 4D50h ('MP')
  4989. Return: AX = data segment
  4990. Program: IPLAY is the Inertia Player by Prime and Excalibur for .MODules
  4991.       (digitized music files)
  4992. SeeAlso: AX=60FFh/DL=00h
  4993. --------v-2F6282-----------------------------
  4994. INT 2F U - PC Tools v7.0+ VDEFEND, VSAFE, VWATCH, DATAMON - SET ??? ADDRESS
  4995.     AX = 6282h
  4996.     CX:DX -> ??? or 0000h:0000h
  4997.     DI = segment of ??? record (see #02846) or 0000h/FFFFh to ignore
  4998. Return: BX = 0062h
  4999. Note:    if CX:DX = 0000h:0000h on entry, the ??? address is not changed
  5000.       (DATAMON only)
  5001. SeeAlso: INT 13/AH=FAh"VSAFE",INT 21/AH=FAh"VDEFEND"
  5002.  
  5003. Format of VSAFE/VWATCH record:
  5004. Offset    Size    Description    (Table 02846)
  5005.  00h    DWORD    ???
  5006.  04h    WORD    offset of ??? in record's segment
  5007.         VSAFE 2.0 sets byte at +01h to 56h or 58h
  5008.         VWATCH 2.1 sets byte at +02h to 56h or 58h
  5009.  06h  2 BYTEs    ???
  5010.  08h    BYTE    ??? (01h/other)
  5011. --------v-2F6284BX0000-----------------------
  5012. INT 2F U - PC Tools v7-8 DATAMON, v9+ DPROTECT    - INSTALLATION CHECK
  5013.     AX = 6284h
  5014.     BX = 0000h
  5015.     CX = 0000h
  5016. Return: AX = segment of resident code
  5017.     BX = 5555h
  5018.     CX = 5555h
  5019. Note:    also supported by DOS 6 UNDELETE which is licensed from PC Tools
  5020. SeeAlso: AX=6284h/BX=0001h,INT 16/AX=FFA3h/BX=0000h
  5021. --------v-2F6284BX0001-----------------------
  5022. INT 2F U - PC Tools v7-8 DATAMON, v9+ DPROTECT - GET ???
  5023.     AX = 6284h
  5024.     BX = 0001h
  5025.     CX = 0001h
  5026. Return: AX:BX -> ??? data (see #02847)
  5027.     CX = BX
  5028. SeeAlso: AX=6284h/BX=0000h
  5029.  
  5030. Format of DPROTECT data for v9.0:
  5031. Offset    Size    Description    (Table 02847)
  5032.  00h  5 BYTEs    ???
  5033.  05h    WORD    resident code segment (may be segment of DWORD at +03h)
  5034.  07h    DWORD    -> FAR function to sound alert tone
  5035.     ???
  5036. --------v-2F6284BX0002-----------------------
  5037. INT 2F U - PC Tools v7-8 DATAMON, v9+ DPROTECT - GET OPTIONS
  5038.     AX = 6284h
  5039.     BX = 0002h
  5040.     CX = 0002h
  5041. Return: AX = options (see #02848)
  5042.     BX = ??? (0000h for v9)
  5043.     CX = AX
  5044.     DX = BX
  5045. Note:    also supported by DOS 6 UNDELETE which is licensed from PC Tools
  5046. SeeAlso: AX=6284h/BX=0000h,AX=6284h/BX=0003h
  5047.  
  5048. Bitfields for DATAMON/DPROTECT options:
  5049. Bit(s)    Description    (Table 02848)
  5050.  1    ???
  5051.  12    disabled
  5052.  13    using Delete Sentry
  5053.  14    using Delete Tracker
  5054. --------v-2F6284BX0003-----------------------
  5055. INT 2F U - PC Tools v7-8 DATAMON, v9+ DPROTECT - SET OPTION??? FLAGS
  5056.     AX = 6284h
  5057.     BX = 0003h
  5058.     CX = flags (see #02849)
  5059.     DX = flags
  5060.         bit 15: ???
  5061. Note:    v9 DPROTECT only checks bit 12 of CX, and ignores DX entirely
  5062. SeeAlso: AX=6284h/BX=0002h
  5063.  
  5064. Bitfields for DATAMON/DPROTECT CX flags:
  5065. Bit(s)    Description    (Table 02849)
  5066.  3    ???
  5067.  5    ???
  5068.  10    ???
  5069.  12    disable DATAMON/DPROTECT
  5070. --------v-2F6284BX0004-----------------------
  5071. INT 2F U - PC Tools v8 DATAMON, v9+ DPROTECT - ???
  5072.     AX = 6284h
  5073.     BX = 0004h
  5074.     CX = 0004h
  5075. Return: AX = 5555h
  5076.     BX = ??? (0800h)
  5077.     CX = ??? (FCCCh for v8, FCCBh for v9)
  5078. --------V-2F6400-----------------------------
  5079. INT 2F - SCRNSAV2.COM - INSTALLATION CHECK
  5080.     AX = 6400h
  5081. Return: AL = installation state
  5082.         00h not installed
  5083.         FFh installed
  5084. Program: SCRNSAV2.COM is a screen saver for PS/2s with VGA by Alan Ballard
  5085. SeeAlso: INT 10/AX=5555h,INT 14/AX=AA01h
  5086. Index:    screen saver;SCRNSAV2
  5087. --------N-2F7000-----------------------------
  5088. INT 2F - License Service API - INSTALLATION CHECK
  5089.     AX = 7000h
  5090.     CX = license server index (0000h to 001Fh)
  5091. Return: AL = status
  5092.         00h not installed
  5093.         FFh installed
  5094. Notes:    The License Service API is being maintained by Microsoft but is being
  5095.       supported by a large number of companies including Apple, Banyan,
  5096.       DEC, HP, Lotus, Microsoft, Novell, Software Publishers Association,
  5097.       and Wordperfect (not a complete list!)
  5098.     Each license service provider must search for the next free index
  5099.       slot to use
  5100. SeeAlso: AX=7001h,AX=7003h,AX=7004h,AX=7005h
  5101. --------N-2F7001-----------------------------
  5102. INT 2F - License Service API - REQUEST LICENSE
  5103.     AX = 7001h
  5104.     CX = license server index (0000h to 001Fh)
  5105.     DS:DX -> SLSREQUEST structure (see #02850)
  5106. Return: AX = status
  5107.         0000h success
  5108.         else  provider error code
  5109.     ES:BX = provider specific handle for the license context
  5110. SeeAlso: AX=7002h,AX=7004h,AX=7005h
  5111.  
  5112. Format of License Service SLSREQUEST structure:
  5113. Offset    Size    Description    (Table 02850)
  5114.  00h    DWORD    (ret) status code
  5115.  04h    DWORD    (ret) handle identifying context
  5116.  08h    DWORD    (call) address of Publisher string
  5117.  0Ch    DWORD    (call) address of Product string
  5118.  10h    DWORD    (call) address of Version string
  5119.  14h    DWORD    units required
  5120.  18h    DWORD    address of comment string
  5121.  1Ch    DWORD    address of SLSCHALLENGE structure (see #02851)
  5122.  
  5123. Format of License Service SLSCHALLENGE structure:
  5124. Offset    Size    Description    (Table 02851)
  5125.  00h    DWORD    algorithm (currently always 1)
  5126.  04h    DWORD    secret to be challenged (1-255)
  5127.  08h    DWORD    size of challenge in bytes (1-255)
  5128.  0Ch  N BYTEs    challenge data
  5129. --------N-2F7002-----------------------------
  5130. INT 2F - License Service API - RELEASE LICENSE
  5131.     AX = 7002h
  5132.     CX = license server index (0000h to 001Fh)
  5133.     DS:DX -> SLSRELEASE structure (see #02852)
  5134.     ES:BX = provider specific handle for the license context
  5135. Return: AL = status
  5136.         00h not installed
  5137.         FFh installed
  5138. SeeAlso: AX=7001h,AX=7005h
  5139.  
  5140. Format of License Service SLSRELEASE structure:
  5141. Offset    Size    Description    (Table 02852)
  5142.  00h    DWORD    handle indentifying license context
  5143.  04h    DWORD    total units consumed
  5144.  08h    DWORD    address of comment string
  5145. --------N-2F7003-----------------------------
  5146. INT 2F - License Service API - UPDATE
  5147.     AX = 7003h
  5148.     CX = license server index (0000h to 001Fh)
  5149.     DS:DX -> SLSUPDATE structure (see #02853)
  5150.     ES:BX = provider specific handle for the license context
  5151. Return: AL = status
  5152.         00h not installed
  5153.         FFh installed
  5154. SeeAlso: AX=7004h,AX=7005h
  5155.  
  5156. Format of License Service SLSUPDATE structure:
  5157. Offset    Size    Description    (Table 02853)
  5158.  00h    DWORD    (ret) status code
  5159.  04h    DWORD    (call) handle identifying license context
  5160.  08h    DWORD    (call) total units consumed
  5161.  0Ch    DWORD    additional units required
  5162.  10h    DWORD    address of comment string
  5163.  14h    DWORD    address of SLSCHALLENGE structure (see #02851)
  5164. --------N-2F7004-----------------------------
  5165. INT 2F - License Service API - GET ERROR
  5166.     AX = 7004h
  5167.     CX = license server index (0000h to 001Fh)
  5168.     DS:DX -> SLSGETERROR structure (see #02854)
  5169.     ES:BX = provider specific handle for the license context
  5170. Return: AL = status
  5171.         00h not installed
  5172.         FFh installed
  5173. SeeAlso: AX=7000h,AX=7001h
  5174.  
  5175. Format of License Service SLSGETERROR structure:
  5176. Offset    Size    Description    (Table 02854)
  5177.  00h    DWORD    (ret) status code
  5178.  04h    DWORD    handle identifying license context
  5179.  08h    DWORD    error code
  5180.  0Ch    DWORD    buffer size in bytes
  5181.  10h  N BYTEs    data buffer
  5182. --------N-2F7005-----------------------------
  5183. INT 2F - License Service API - QUERY LICENSE
  5184.     AX = 7005h
  5185.     CX = license server index (0000h to 001Fh)
  5186.     DS:DX -> SLSQUERY structure (see #02855)
  5187.     ES:BX = provider specific handle for the license context
  5188. Return: AL = status
  5189.         00h not installed
  5190.         FFh installed
  5191. SeeAlso: AX=7001h,AX=7002h
  5192.  
  5193. Format of License Service SLSQUERY structure:
  5194. Offset    Size    Description    (Table 02855)
  5195.  00h    DWORD    (ret) status code
  5196.  04h    DWORD    handle identifying license context
  5197.  08h    DWORD    information index
  5198.  0Ch    DWORD    buffer size in bytes
  5199.  10h  N BYTEs    data buffer
  5200. --------K-2F7041BX4B70-----------------------
  5201. INT 2F U - HP 200LX - KEY200 - INSTALLATION CHECK
  5202.     AX = 7041h
  5203.     BX = 4B70h
  5204. Return: BX = 7965h if keyboard remapper KEY200.COM installed
  5205. --------d-2F7200-----------------------------
  5206. INT 2F - SRDISK v1.30+ - INSTALLATION CHECK
  5207.     AX = 7200h
  5208. Return: AL = FFh if installed
  5209.         ES = segment of device driver header (see #02856)
  5210. Program: SRDISK is a freeware resizeable RAMdisk by Marko Kohtala
  5211. SeeAlso: AX=7201h
  5212.  
  5213. Format of SRDISK device driver header:
  5214. Offset    Size    Description    (Table 02856)
  5215.  00h 10 BYTEs    same as standard device driver header
  5216.           (see #01646 at INT 21/AH=52h)
  5217.  0Ah    BYTE    number of subunits (drives) supported by driver
  5218.  0Bh  3 BYTEs    signature "SRD"
  5219.  0Eh  4 BYTEs    memory type string ("XMS "/"EMS ")
  5220.  12h  4 BYTEs    ASCII driver version string "N.NN"
  5221.  16h    BYTE    00h
  5222.  17h    BYTE    configuration format version (currently 00h or 01h)
  5223.  18h    WORD    offset of drive configuration data
  5224. SeeAlso: #01646
  5225. --------d-2F7201-----------------------------
  5226. INT 2F - SRDISK v2.02 - GET CODE/DATA SEGMENT
  5227.     AX = 7201h
  5228. Return: AL = FFh if installed
  5229.         ES = segment of device driver header (see #02856)
  5230. Program: SRDISK is a freeware resizeable RAMdisk by Marko Kohtala
  5231. SeeAlso: AX=7200h
  5232. --------N-2F7A00-----------------------------
  5233. INT 2F - Novell NetWare - LOW-LEVEL API (IPX) INSTALLATION CHECK
  5234.     AX = 7A00h
  5235. Return: AL = status
  5236.         00h not installed
  5237.         FFh installed
  5238.         ES:DI -> FAR entry point for routines accessed exclusively
  5239.               through INT 7A in NetWare versions through 2.0a.
  5240.               Call with same values as INT 7A
  5241.         ES:BX -> two bytes containing IPX major/minor version
  5242.             (IPXODI v2.12; BX unchanged by older IPX drivers)
  5243.         CX = ES ???
  5244. SeeAlso: AX=7AFFh/BX=0000h,AX=D800h,INT 64"Novell",INT 7A"LOW-LEVEL API"
  5245. --------N-2F7A10-----------------------------
  5246. INT 2F U - Novell NetWare - TBMI v1.1+ - GET TBMI STATUS
  5247.     AX = 7A10h
  5248. Return: DH = major TBMI version number
  5249.     DL = minor TBMI version number (01h for v1.1)
  5250.     CX = segment address of TBMI resident part
  5251.     BX = status word of TBMI (see #02857)
  5252. Note:    TBMI is the Task-Switched Buffer Manager Interface
  5253. SeeAlso: AX=7A11h,AX=7A12h,AX=7A13h,AX=7A14h
  5254.  
  5255. Bitfields for NetWare TBMI status word:
  5256. Bit(s)    Description    (Table 02857)
  5257.  0    INT2F intercepted by TBMI
  5258.  1    INT7A intercepted by TBMI
  5259.  2    INT64 intercepted by TBMI
  5260.  3-14    reserved or unused ???
  5261.  15    outstanding task ID was detected
  5262. --------N-2F7A11-----------------------------
  5263. INT 2F U - Novell NetWare - TBMI v1.1+ - GET INT2F HANDLERS
  5264.     AX = 7A11h
  5265. Return: ES:BX -> old INT 2F handler
  5266.     DS:DX -> TBMI INT 2F handler
  5267. SeeAlso: AX=7A10h,AX=7A12h,AX=7A13h,AX=7A1Ah
  5268. --------N-2F7A12-----------------------------
  5269. INT 2F U - Novell NetWare - TBMI v1.1+ - GET INT64 HANDLERS
  5270.     AX = 7A12h
  5271. Return: ES:BX -> old INT 64 handler
  5272.     DS:DX -> TBMI INT 64 handler
  5273. SeeAlso: AX=7A10h,AX=7A11h,AX=7A13h
  5274. --------N-2F7A13-----------------------------
  5275. INT 2F U - Novell NetWare - TBMI v1.1+ - GET INT7A HANDLERS
  5276.     AX = 7A13h
  5277. Return: ES:BX -> old INT 7A handler
  5278.     DS:DX -> TBMI INT 7A handler
  5279. SeeAlso: AX=7A10h,AX=7A11h,AX=7A12h
  5280. --------N-2F7A14-----------------------------
  5281. INT 2F U - Novell NetWare - TBMI v1.1+ - GET STATISTICS
  5282.     AX = 7A14h
  5283.     CX = statistic to retrieve
  5284.         0000h available diagnostic functions???
  5285.         Return: CX = maximum available function??? (000Ch for v2.0)
  5286.         0001h buffers in use
  5287.         Return: CX = TBMI buffers currently in use
  5288.         0002h maximum buffers used
  5289.         Return: CX = maximum number of buffers ever in use
  5290.         0003h unavailable buffers
  5291.         Return: CX = count of unavailable TBMI buffers
  5292.         0004h old interrupt usage
  5293.         Return: CX = TBMI accesses to intercepted old vectors INT 2F,
  5294.                   INT 64, and INT 7A
  5295.         0005h far call usage
  5296.         Return: CX = TBMI accesses to IPX/SPX far call handler (not
  5297.                   including internal accesses)
  5298.         0006h task buffering
  5299.         Return: CX = TBMI task buffering status (enabled/disabled or
  5300.                   disable/enable switch count???)
  5301.         0007h current task ID
  5302.         Return: CX = TBMI current task ID number (0000h if ???)
  5303.         0008h outstanding ID count
  5304.         Return: CX = number of outstanding TBMI IDs
  5305.         0009h configured ECBs
  5306.         Return: CX = number of TBMI Event Control Blocks configured
  5307.         000Ah configured data ECBs
  5308.         Return: CX = number of TBMI data ECBs configured
  5309.         000Bh configured sockets
  5310.         Return: CX = number of TBMI sockets configured (from NETCFG)
  5311.         000Ch current sockets
  5312.         Return: CX = number of TBMI sockets currently in use
  5313. Return: BX = maximum supported subfunction (000Ch)
  5314. SeeAlso: AX=7A10h
  5315. --------N-2F7A15-----------------------------
  5316. INT 2F OU - Novell NetWare - TBMI v1.1 only - RESET ???
  5317.     AX = 7A15h
  5318. Return: BX = new value of ???
  5319. Desc:    set ??? to its default value
  5320. Note:    this call is a NOP under TBMI v2.0 (TBMI2)
  5321. SeeAlso: AX=7A17h
  5322. --------N-2F7A16-----------------------------
  5323. INT 2F OU - Novell NetWare - TBMI v1.1 only - ???
  5324.     AX = 7A16h
  5325.     CX = ???
  5326.     ???
  5327. Return: ???
  5328. Note:    this call is a NOP under TBMI v2.0 (TBMI2)
  5329. --------N-2F7A17-----------------------------
  5330. INT 2F OU - Novell NetWare - TBMI v1.1 only - ???
  5331.     AX = 7A17h
  5332.     ???
  5333. Return: BX = old value of ???
  5334.     CX = new value of ???
  5335. Note:    this call is a NOP under TBMI v2.0 (TBMI2)
  5336. SeeAlso: AX=7A15h
  5337. --------N-2F7A18-----------------------------
  5338. INT 2F U - Novell NetWare - TASKID v1.0 - INSTALLATION CHECK
  5339.     AX = 7A18h
  5340. Return: AL = FFh if installed
  5341.         BX = configuration flags (see #02858)
  5342.         CX = resident code segment
  5343. SeeAlso: AX=7A10h
  5344.  
  5345. Bitfields for NetWare TASKID configuration flags:
  5346. Bit(s)    Description    (Table 02858)
  5347.  0    INT 2F hooked
  5348.  3    INT 08 hooked
  5349.  other    unused
  5350. --------N-2F7A19-----------------------------
  5351. INT 2F U - Novell NetWare - TASKID v1.0 - GET INT 08 HANDLERS
  5352.     AX = 7A19h
  5353. Return: AL = FFh
  5354.     DS:DX -> TASKID INT 08 handler
  5355.     ES:BX -> original INT 08 handler
  5356. --------N-2F7A1A-----------------------------
  5357. INT 2F U - Novell NetWare - TASKID v1.0 - GET INT 2F HANDLERS
  5358.     AX = 7A1Ah
  5359. Return: AL = FFh
  5360.     DX:DX -> TASKID INT 2F handler
  5361.     ES:BX -> original INT 2F handler
  5362. SeeAlso: AX=7A11h,AX=7A19h
  5363. --------N-2F7A1B-----------------------------
  5364. INT 2F U - Novell NetWare - TASKID v1.0 - GET DIAGNOSTICS INFORMATION
  5365.     AX = 7A1Bh
  5366.     CX = desired information
  5367.         0000h supported functions
  5368.         0001h TASKID ID number
  5369.         Return: CX = ID number
  5370.         0002h set-ID count
  5371.         Return: CX = ID set count
  5372. Return: AL = FFh
  5373.     BX = highest supported subfunction number (0002h)
  5374. SeeAlso: AX=7A14h,AX=7A18h
  5375. --------N-2F7A1C-----------------------------
  5376. INT 2F U - Novell NetWare - TBMI v1.1+ - ???
  5377.     AX = 7A1Ch
  5378.     BP = ???
  5379.     CX:DX = ???
  5380. Return: AX = 70FFh
  5381. --------N-2F7A1D-----------------------------
  5382. INT 2F U - Novell NetWare - TBMI v1.1+ - ???
  5383.     AX = 7A1Dh
  5384.     ???
  5385. Return: ES = ???
  5386.     ???
  5387.     SI destroyed
  5388. --------N-2F7A1E-----------------------------
  5389. INT 2F U - Novell NetWare - TBMI v1.1+ - ???
  5390.     AX = 7A1Eh
  5391.     ES:SI -> ???
  5392.     ???
  5393. Return: ???
  5394. --------N-2F7A20BX0000-----------------------
  5395. INT 2F - Novell NetWare - Adv NetWare 4.0 DOS Requester - GET VLM CALL ADDRESS
  5396.     AX = 7A20h
  5397.     BX = 0000h
  5398. Return: AX = 0000h on success (installed)
  5399.         ES:BX -> far call address for DOS Requester (see #02859)
  5400. Notes:    the DOS Requester replaces the NetWare Shell (ANETx, NETx) on
  5401.       NetWare LAN's as of the release of Advanced NetWare 4.0 (1993).  It
  5402.       is backward compatible with NetWare 2.1x through 3.11 servers as
  5403.       well.     Note that there was a NetWare 4.0 in the early 1980's, which
  5404.       can cause confusion.
  5405.     this call is used as the installation check by VLM.EXE, which is the
  5406.       loader for all the modules of the DOS Requester
  5407.     .VLMs are standard old .EXE format executables whose normal entry point
  5408.       merely terminates to prevent loading from the command line (Novell's
  5409.       VLMs all return errorlevel 6).  The real entry point is found by
  5410.       looking at the VLM header at the beginning of the load image
  5411.       (see #02862)
  5412. Index:    installation check;NetWare 4.0 DOS Requester
  5413. SeeAlso: AX=7A20h/BX=0001h,AX=7A20h/BX=0002h
  5414.  
  5415. (Table 02859)
  5416. Call DOS Requester entry point with:
  5417.     STACK:    WORD    destination function
  5418.         WORD    destination VLM ID (see #02861)
  5419.         WORD    source VLM ID (0000h = application program)
  5420.     other registers (except BP) as appropriate for function
  5421. Return: AX = status code (0000h,8811h,8846h,8848h,8853h) (see #02860)
  5422.     ZF set if successful, clear on error
  5423.     other registers as appropriate for function
  5424.     STACK popped
  5425.     BP destroyed
  5426.  
  5427. (Table 02860)
  5428. Values for VLM status code:
  5429.  0000h    successful
  5430.  88xxh    error generated by requester
  5431.  8801h    invalid or non-attached connection handle
  5432.  8802h    drive in use (OS/2 only)
  5433.  8803h    cannot add CDS
  5434.  8804h    bad path
  5435.  8805h    error sending or receiving NCP packets
  5436.  8806h    unknown network error
  5437.  8807h    invalid server connection slot
  5438.  8808h    no connection slots available
  5439.  880Ah    no route to server
  5440.  880Bh    "BAD_LOCAL_TARGET" (OS/2 only)
  5441.  880Ch    too many request fragments
  5442.  880Dh    "CONNECT_LIST_OVERFLOW" (OS/2 only)
  5443.  880Eh    buffer overflow on receive
  5444.  880Fh    no connection to server
  5445.  8810h    no router found (OS/2 only)
  5446.  8811h    nonexistent function called
  5447.  8830h    internal server request attempted between two separate connections
  5448.  8831h    no primary connection set
  5449.  8833h    invalid buffer length
  5450.  8834h    invalid user name
  5451.  8835h    no local print spooler installed
  5452.  8836h    attempted function with invalid parameter
  5453.  8837h    failed to open configuration file (OS/2 only)
  5454.  8838h    no configuration file (OS/2 only)
  5455.  8839h    configuration file read failed (OS/2 only)
  5456.  883Ah    line too long in configuration file (OS/2 only)
  5457.  883Bh    configuration lines ignored (OS/2 only)
  5458.  883Ch    foreign resource
  5459.  883Dh    daemon already installed (OS/2 only)
  5460.  883Eh    print spooler already installed
  5461.  883Fh    local connection table already full
  5462.  8840h    configuration section not found (OS/2 only)
  5463.  8841h    invalid transport type
  5464.  8842h    TDS tag in use (OS/2 only)
  5465.  8843h    TDS out of memory (OS/2 only)
  5466.  8844h    called TDS function with invalid tag
  5467.  8845h    TDS write was truncated
  5468.  8846h    called partially asynchronous function while it was busy
  5469.  8847h    unable to find any responding servers
  5470.  8848h    non-loaded or nonexistent VLM called
  5471.  8849h    network drive already mapped
  5472.  884Ah    attempted map to local drive which was already in use
  5473.  884Bh    no more drives available for mapping
  5474.  884Ch    device is not redirected
  5475.  884Dh    no more SFT entries (too many handles)
  5476.  884Eh    unable to unload
  5477.  884Fh    connection entry was already in use
  5478.  8850h    too many reply fragments
  5479.  8851h    name table already full
  5480.  8852h    socket not open
  5481.  8853h    memory management error
  5482.  8854h    SFT III switch occurred in mid-transfer
  5483.  8855h    preferred server was not found (alternate returned)
  5484.  8856h    device not recognized
  5485.  8857h    bad network byte
  5486.  88A0h    memory allocation error
  5487.  88A1h    connection timeout failure
  5488.  88A2h    transport: bad request
  5489.  88A3h    specified transport not installed
  5490.  88A4h    unable to open connection with specified parameters
  5491.  88A6h    unsupported function
  5492.  88A7h    no such task
  5493.  88A8h    too many tasks
  5494.  88A9h    version mismatch
  5495.  88AAh    request cancelled
  5496.  88ABh    invalid NDS name
  5497.  88ACh    unable to perform operation while logged into NDS
  5498.  88ADh    requester not available for use
  5499.  88AEh    MacIPX not configured properly
  5500.  88AFh    no servers found
  5501.  88B0h    no volume or session associated with identifier
  5502.  88B1h    not a NetWare volume
  5503.  88B2h    MacIPX version incompatible with Requester
  5504.  88B4h    MacIPX not open
  5505.  88B5h    insufficient stack
  5506.  88B6h    client API already initialized
  5507.  88B7h    checksums required by client are not available
  5508.  88B8h    packet signing required by client are not available
  5509.  88B9h    server requires checksum
  5510.  88BAh    server requires packet signing
  5511.  88BBh    already logged in
  5512.  88BCh    negotiated checksums but connection timed out
  5513.  89xxh    error generated by server
  5514.     low byte = return code from server (see also #01927,#01961)
  5515.  8900h    server successful
  5516.  8901h    out of disk space
  5517.  897Eh    NCP boundary check failed
  5518.  897Fh    ???
  5519.  8980h    lock failed; file in use
  5520.  8981h    out of handles
  5521.  8982h    no open privileges
  5522.  8983h    hard (non-correctable) I/O error
  5523.  8984h    no creation privileges
  5524.  8985h    no create/delete privileges
  5525.  8986h    attempted to create a file which already exists read-only
  5526.  8987h    filename error during creation (wildcards in name)
  5527.  8988h    invalid file handle
  5528.  8989h    no search privileges
  5529.  898Ah    no deletion privileges
  5530.  898Bh    no rename privileges
  5531.  898Ch    no modify privileges
  5532.  898Dh    some affected files are in use
  5533.  898Eh    all affected files are in use
  5534.  898Fh    some affected files are read-only
  5535.  8990h    all affected files are read-only; volume read-only
  5536.  8991h    some files could not be renamed because target names already exist
  5537.  8992h    all affected names exist
  5538.  8993h    no read privileges
  5539.  8994h    no write privileges
  5540.  8995h    file detached
  5541.  8996h    server out of memory
  5542.  8997h    no disk space for spool file
  5543.  8998h    disk map error; volume does not exist
  5544.  8999h    directory full
  5545.  899Ah    attempt to rename across volumes
  5546.  899Bh    bad directory handle
  5547.  899Ch    invalid path; no more trustees
  5548.  899Dh    no directory handles
  5549.  899Eh    bad filename
  5550.  899Fh    directory active
  5551.  89A0h    directory not empty
  5552.  89A1h    directory I/O error
  5553.  89A2h    I/O lock error
  5554.  89A3h-89A5h ???
  5555.  89A6h    auditing is active
  5556.  89A7h    auditing version error
  5557.  89A8h    no auditing rights
  5558.  89A3h-89BEh ???
  5559.  89BFh    invalid name space
  5560.  89C0h    no account privileges
  5561.  89C1h    no account balance
  5562.  89C2h    credit limit exceeded
  5563.  89C4h    account disabled
  5564.  89C5h    login lockout (intruder detection activated)
  5565.  89C6h    no console rights
  5566.  89C7h-89CFh
  5567.  89D0h    queue error
  5568.  89D1h    no queue
  5569.  89D2h    no queue server
  5570.  89D3h    no queue rights
  5571.  89D4h    queue full
  5572.  89D5h    no queue job
  5573.  89D6h    no job rights; unencrypted password
  5574.  89D7h    queue servicing error; duplicate password; bad account
  5575.  89D8h    queue not active; password too short
  5576.  89D9h    station not queue server; maximum logins exceeded
  5577.  89DAh    queue halted; bad login time
  5578.  89DBh    maximum queue servers; unauthorized login station
  5579.  89DCh    account disabled or expired
  5580.  89DEh    password expired (all grace logins used up)
  5581.  89DFh    password expired but login allowed (grace login)
  5582.  89E0h-89E6h ???
  5583.  89E7h    no disk track
  5584.  89E8h    property is not an item property; write to group
  5585.  89E9h    member exists
  5586.  89EAh    no such member
  5587.  89EBh    property is not a set property
  5588.  89ECh    no such set
  5589.  89EDh    property exists
  5590.  89EEh    object exists
  5591.  89EFh    illegal name
  5592.  89F0h    illegal wildcard
  5593.  89F1h    invalid bindery security level
  5594.  89F2h    not allowed to read object
  5595.  89F3h    not allowed to write/rename object
  5596.  89F4h    not allowed to delete object
  5597.  89F5h    not allowed to create object
  5598.  89F6h    not allowed to delete property
  5599.  89F7h    not allowed to create property; attempt to use non-local drive
  5600.  89F8h    not allowed to write property; already attached to server
  5601.  89F9h    not allowed to read property; no free connection slots
  5602.  89FAh    temporary remap error; no more server slots
  5603.  89FBh    no such property; invalid parameters
  5604.  89FCh    no such object; internet packet request canceled; unknown file server
  5605.  89FDh    bad station number; lock collision
  5606.  89FEh    directory locked; bindery locked; timeout
  5607.  89FFh    general error; hard error; lock error
  5608. Note:    some server-generated error codes have multiple interpretations; use
  5609.       the one appropriate to the failing call
  5610.  
  5611. (Table 02861)
  5612. Values for VLM identifier:
  5613.  0001h    VLM.EXE        Virtual Loadable Modules manager (see also #02864)
  5614.  0010h    CONN.VLM    connection table manager (see also #02867)
  5615.  0020h    TRAN.VLM    transport protocol multiplexor (see also #02871)
  5616.  0021h    IPXNCP.VLM    transport protocol implementation using IPX (see #02873)
  5617.  0022h    TCPNCP.VLM    TCP/IP transport
  5618.  0030h    NWP.VLM        NetWare protocol multiplexor (see also #02875)
  5619.  0031h    BIND.VLM    bindery
  5620.  0032h    NDS.VLM        NetWare Directory Services (see also #02877)
  5621.  0033h    PNW.VLM        Personal NetWare
  5622.  0034h    RSA.VLM        RSA encryption for directory services re-authentication
  5623.  0040h    REDIR.VLM    DOS redirector (see also #02879)
  5624.  0041h    FIO.VLM        file I/O (see also #02882)
  5625.  0042h    PRINT.VLM    printer redirector (see also #02884)
  5626.  0043h    GENERAL.VLM    misc functions for NETx and REDIR (see also #02888)
  5627.  0050h    NETX.VLM    NetWare shell compatibility (see also #02890)
  5628.  0060h    AUTO.VLM    auto-reconnect/auto-retry
  5629.  0061h    SECURITY.VLM    enhanced security module (see #02892)
  5630.  0100h    NMR.VLM        NetWare management responder
  5631.  09F2h    DRVPRN.VLM    Desktop SNMP Services - Drive/Printer Mappings
  5632.  09F5h    SAA.VLM        SAA client API for Netware
  5633.  09F6h    IPXMIB.VLM    SNMP IPX-monitoring Module???
  5634.  09F7h    PNWMIB.VLM    Personal Netware SNMP Instrumentation Module
  5635.  09F8h    PNWTRAP.VLM    Personal Netware SNMP Trap Module
  5636.  09F9h    MIB2PROT.VLM    MIB-II Protocol Groups
  5637.  09FAh    MIB2IF.VLM    MIB-II Interfaces Group
  5638.  09FBh    NVT.VLM        ???
  5639.  09FCh    WSTRAP.VLM    Desktop SNMP Services - Trap Module
  5640.  09FDh    WSREG.VLM    Desktop SNMP Services - Registration Module
  5641.  09FEh    WSASN1.VLM    Desktop SNMP Services - ASN.1 Module
  5642.  09FFh    WSSNMP.VLM    Desktop SNMP Services - Agent Module
  5643.  
  5644. Format of VLM header:
  5645. Offset    Size    Description    (Table 02862)
  5646.  00h    DWORD    -> initialization entry point
  5647.  04h    DWORD    -> VLM API entry point
  5648.  08h    DWORD    -> ??? entry point
  5649.  0Ch    DWORD    -> ??? entry point
  5650.  10h    DWORD    -> ??? entry point
  5651.     ...
  5652.  var    DWORD    00000000h (end of entry point list)
  5653.       4 BYTEs    signature "NVlm"
  5654.     WORD    VLM identifier (see #02861)
  5655. ---v1.20+ ---
  5656.  1Eh    WORD    ???
  5657.  20h    WORD    Transient Switch Count
  5658.  22h    WORD    VLM Call Count
  5659.  24h    WORD    Offset ControlBlocks (See #02863)
  5660.  26h    WORD    Current VLMID
  5661.  28h    BYTE    Memory Type
  5662.         00h=Conventional 02h=EMS 04h=XMS
  5663.  29h    BYTE    Modules Loaded
  5664.  2Ah    WORD    BlockId
  5665.  2Ch    WORD    Transient Block
  5666.  2Eh    WORD    Global Segment
  5667.  30h  3    DWORDs    pointers to AsyncQueue head, tail, and s???
  5668.  3Ch  3    DWORDs    pointers BusyQueue head, tail, and s???
  5669.  48h    WORD    ReEntrance Level
  5670.  4Ah    WORD    Full Map Count
  5671.  4Ch    WORD    ???
  5672.  4Eh 80 BYTEs    ASCIZ configuration file filename
  5673. Note:    the number of entry points in the header is reported as "Func" in the
  5674.       VLM /D display.
  5675.  
  5676. Format of VLM Control Block for VLM v1.20 [array]:
  5677. Offset    Size    Description    (Table 02863)
  5678.  00h    WORD    Flag
  5679.  02h    WORD    VLM Identifier (See #02861)
  5680.  04h    WORD    Func
  5681.  06h    WORD    Maps
  5682.  08h    WORD    number of times called
  5683.  0Ah    WORD    ???
  5684.  0Ch    WORD    Transient Segment
  5685.  0Eh    WORD    Global Segment
  5686.  10h    WORD    Address Low
  5687.  12h    WORD    Address High
  5688.  14h    WORD    TSegSize
  5689.  16h    WORD    GSegSize
  5690.  18h    WORD    SSegSize
  5691.  1Ah    BYTE    VLMName[9] ASCIZ
  5692. Note:    this information is shown in VLM /d under the dashed line. There are
  5693.       as many 35-byte blocks as modules loaded
  5694. SeeAlso: #02862
  5695.  
  5696. (Table 02864)
  5697. Call VLM Manager (VLM.EXE, ID 0001h) with:
  5698. Func    Description/Registers
  5699.  01h    VLM Notify
  5700.     BX = function
  5701.         0000h get version
  5702.         Return: AX = status (see #02860)
  5703.             BX = major version of VLM supported (0001h)
  5704.             CX = minor version of VLM supported (0000h)
  5705.  03h    VLM Statistics
  5706.     CX = length of buffer
  5707.     ES:DI -> buffer for statistics (see #02865)
  5708.     Return: AX = status (0000h if successful)
  5709.         buffer filled if successful
  5710.  04h    VLM internal use
  5711.     BX = function
  5712.         0000h get interrupt vector (calls INT 21/AH=35h)
  5713.         0001h begin critical section (calls INT 2F/AX=1681h)
  5714.         0002h end critical section (calls INT 2F/AX=1682h)
  5715.         0003h ???
  5716.  
  5717. Format of VLM.EXE statistics:
  5718. Offset    Size    Description    (Table 02865)
  5719.  00h    WORD    size of statistics record in bytes (including this word)
  5720.  02h    WORD    number of times a VLM has been mapped into memory
  5721.  04h    WORD    number of times a VLM has been called
  5722.  06h    WORD    offset of vcbArray buffer
  5723.  08h    WORD    VLM ID of VLM currently mapped into memory
  5724.  0Ah    BYTE    memory type: conventional/EMS/XMS
  5725.  0Bh    BYTE    number of loaded VLMs
  5726.  0Ch    WORD    EMS/XMS handle or 0000h if conventional memory
  5727.  0Eh    WORD    start segment for conventional memory swap
  5728.  10h    WORD    segment for global memory, or 0000h if conventional memory
  5729.  12h 12 BYTEs    queue structure for asynchronous calls (see #02866)
  5730.  1Eh 12 BYTEs    queue structure for synchronous calls (see #02866)
  5731.  2Ah    WORD    current re-entrance level
  5732.  2Ch    WORD    number of times EMS/XMS map-out performed
  5733.  2Eh    BYTE    stack switch control
  5734.  2Fh    BYTE    flag: nonzero if switcher loaded
  5735.  30h 80 BYTEs    pathname of configuration file
  5736. SeeAlso: #02864
  5737.  
  5738. Format of VLM.EXE queue structure:
  5739. Offset    Size    Description    (Table 02866)
  5740.  00h    DWORD    queue head (initially 00000000h)
  5741.  04h    DWORD    queue tail (initialized to be same as head)
  5742.  08h    WORD    current queue size (number of nodes in queue)
  5743.  0Ah    WORD    maximum queue size (in nodes)
  5744. SeeAlso: #02865
  5745.  
  5746. (Table 02867)
  5747. Call Connection Manager (CONN.VLM, ID 0010h) with:
  5748. Func    Description/Registers
  5749.  01h    Conn Get Version
  5750.     BX = function
  5751.         0000h get version
  5752.         Return: AX = status (see #02860)
  5753.             BX = major version of VLM supported (0001h)
  5754.             CX = minor version of VLM supported (0000h)
  5755.  03h    Conn Statistics
  5756.     CX = length of buffer
  5757.     ES:DI -> buffer for connection statistics (see #02868)
  5758.     Return: AX = status (0000h successful)
  5759.  04h    Conn Alloc Handle
  5760.     Return: AX = status (0000h successful)
  5761.         CX = connection handle
  5762.  05h    Conn Validate Handle
  5763.     CX = connection handle
  5764.     Return: AX = 0000h if valid handle
  5765.  06h    Conn Free Handle
  5766.     CX = connection handle
  5767.     Return: AX = status (0000h successful)
  5768.  07h    Conn Get Entry Field
  5769.     BH = connection parameter (see #02870)
  5770.     CX = connection handle
  5771.     DX = value if BH is non-array parameter
  5772.     DH = offset in array if BH is array parameter
  5773.     DL = number of bytes to copy if BH is array
  5774.     ES:DI -> return buffer if BH is array
  5775.     Return: AX = 0000h if successful
  5776.         DL/DX = value if non-array parameter
  5777.         DH = maximum number of bytes in buffer if array parameter
  5778.         DL = number of bytes copied if array
  5779.         BX destroyed
  5780.  08h    Conn Set Entry Field
  5781.     BH = connection parameter (see #02870)
  5782.     CX = connection handle
  5783.     DL/DX = value if BH is non-array parameter
  5784.     DH = offset in array if BH is array parameter
  5785.     DL = number of bytes to copy if BH is array
  5786.     DS:SI -> buffer if BH is array
  5787.     Return: AX = 0000h if successful
  5788.         DH = maximum number of bytes in buffer
  5789.         DL = number of bytes copied
  5790.         BX destroyed
  5791.  09h    Conn Reset Entry Field
  5792.     BH = connection parameter (see #02870)
  5793.     CX = connection handle
  5794.     Return: AX = 0000h if successful
  5795.         BX,DX destroyed
  5796.  0Ah    Conn Lookup Handle
  5797.     BL = lookup type (00h equal, 40h not equal)
  5798.     BH = connection parameter (see #02870)
  5799.     CX = connection handle, 0000h if first
  5800.     DL/DX = value if BH is non-array parameter
  5801.     DH = offset in array if BH is array parameter
  5802.     DL = number of bytes to copy if BH is array
  5803.     DS:SI (ES:DI???) -> buffer if BH is array
  5804.     Return: AX = 0000h if successful
  5805.         CX = handle matching given parameters
  5806.  0Dh    Conn Name Lookup
  5807.     CX = connection handle
  5808.     ES:DI -> 49-byte buffer for server name or 0000h:0000h
  5809.     Return: AX = 0000h if successful
  5810.         BX = length of server name
  5811.         ES:DI buffer filled if pointer not 0000h:0000h
  5812.  0Eh    Conn Name To Handle
  5813.     DS:SI -> uppercased server name
  5814.     CX = length of server name, 0000h if ASCIZ name
  5815.     Return: AX = error code or 0000h if successful
  5816.             CX = connection handle if successful
  5817.  0Fh    Conn Get Num Connections
  5818.     Return: AX = status (0000h if successful)
  5819.         DX = number of connections
  5820.         CX = segment of connection table
  5821.             first entry in table (See #02869)
  5822.  
  5823. Format of VLM connection statistics:
  5824. Offset    Size    Description    (Table 02868)
  5825.  00h    WORD    total length of statistics record (including this word)
  5826.  02h    WORD    number of connection handles allocated
  5827.  04h    WORD    average name length (configured in NET.CFG)
  5828.  06h    WORD    maximum number of tasks (configured in NET.CFG)
  5829.  08h    WORD    number of failed "allocate handle" calls
  5830.  0Ah    WORD    number of failed "add name" calls
  5831.  0Ch    WORD    number of failed task calls
  5832. Note:    some versions of the NetWare requester reportedly do not implement
  5833.       this correctly
  5834. SeeAlso: #02867
  5835.  
  5836. Format of NetWare VLM Connection Table [array]:
  5837. Offset    Size    Description    (Table 02869)
  5838.  00h    WORD    Protocol VLMid      0032(NDS) 0031(BIND)        Func 07 equiv.
  5839.                   0033(PNW) 0000(unused)       BH=01h
  5840.  02h    BYTE    (connection status)
  5841.         bit 6: connection locked               BH=16h
  5842.         bit 5: authenticated                   BH=03h
  5843.         bit 4: permanent                   BH=02h
  5844.         bit 2: broadcast msg waiting               BH=12h
  5845.  03h    BYTE    (connection capabilities)
  5846.         bit 5: Large Internet Packets               none
  5847.         bit 3: Packet Burst Reset               BH=07h
  5848.         bit 2: Max I/O                       BH=06h
  5849.         bit 1: SFT3 change                   BH=05h
  5850.         bit 0: Packet Burst Support               BH=04h
  5851.  04h    WORD    reference count                       BH=09h
  5852.  06h    WORD    soft resource count                   BH=15h
  5853.  08h    BYTE    NCP Order Number                   BH=0Eh
  5854.  09h    BYTE    Server security options                   BH=14h
  5855.         bit 0: CRC enabled
  5856.         bit 1: packet signing required
  5857.         bit 5: packet signing enabled
  5858.  0Ah    BYTE    OS Major Version                   BH=08h
  5859.  0Bh    BYTE    OS Minor Version                   BH=08h
  5860.  0Ch    WORD    Hops to Server                       BH=0Ah
  5861.  0Eh    WORD    Maximum Packet Size for this connection           BH=0Bh
  5862.  10h    WORD    LIP Parameters                       BH=13h
  5863.  12h    WORD    NCP Request Type                   BH=10h
  5864.  14h    BYTE    NCP Sequence                       BH=0Ch
  5865.  15h    WORD    Connection Number                   BH=0Dh
  5866.  17h    BYTE    ???                           none
  5867.  18h    WORD    Transport VLMid 21(IPXNCP) 22(TCPNCP)           BH=0Fh
  5868.  1Ah    BYTE    Node Address[4]                       BH=11h
  5869.  1Eh    BYTE    Network[6]                       BH=11h
  5870.  24h    BYTE    Socket[2]                       BH=11h
  5871.  26h    BYTE    Local Target[6]                       BH=11h
  5872.  2Ch    WORD    Round Trip Time                       BH=11h
  5873.  2Eh    WORD    ???                           none
  5874. SeeAlso: #02867
  5875.  
  5876. (Table 02870)
  5877. Values for NetWare Connection Manager CEI (Connection Entry Information):
  5878.  number    flags    description
  5879.  00h    FR    error
  5880.  01h    WL    VLM id of transport protocol (NDS/BIND/PNW)
  5881.         00h = wildcard
  5882.  02h    FR    permanent flag (01h if connection is permanent)
  5883.  03h    F    authenticated flag (01h if connection is authenticated)
  5884.  04h    F    packet burst supported
  5885.  05h    FR    SFT3 change status
  5886.  06h    FR    connection needs maximum I/O transmission
  5887.  07h    FR    packet burst reset needed
  5888.  08h    W    server version
  5889.  09h    W    reference count (tasks using connection, 00h = dynamic)
  5890.  0Ah    W    distance to server associated with connection
  5891.  0Bh    W    maximum packet size supported by transport protocol
  5892.  0Ch    B    NCP sequence number
  5893.  0Dh    W    connection number
  5894.  0Eh    B    NCP order number
  5895.  0Fh    WL    VLM id for transport protocol
  5896.         00h = wildcard, 21h = IPX, 22h = TCP
  5897.  10h    W    NCP request type
  5898.  11h    A    transport specific buffer
  5899.         12 byte server address
  5900.         6 byte    router address
  5901.         2 byte round trip time
  5902.  12h    FR    broadcast message waiting
  5903.  13h    W    large internet packets supported
  5904.  14h    B    security options
  5905.         bit 0: CRC enabled
  5906.         bit 1: packet signing enabled
  5907.         bit 5: packet signing active
  5908.  15h    W    soft resource count
  5909.  16h    FR    connection locked
  5910. Note:    flag meanings
  5911.         F=flag value
  5912.         B=byte value
  5913.         W=word value
  5914.         A=array
  5915.         R=resettable
  5916.         L=settable only before authentication
  5917.         others=read only
  5918. SeeAlso: #02867
  5919.  
  5920. (Table 02871)
  5921. Call TRAN.VLM (VLM ID 0020h) with:
  5922. Func    Description/Registers
  5923.  01h    TRAN Get Version
  5924.     BX = function
  5925.         0000h get version
  5926.         Return: AX = status (see #02860)
  5927.             BX = major version of VLM supported (0001h)
  5928.             CX = minor version of VLM supported (0000h)
  5929.  03h    TRAN Statistics
  5930.  06h    TRAN Request Reply (see INT 21/AH=F2h)
  5931.     AL = NCP request code (see #02095 at INT 21/AH=F2h)
  5932.     BH = error handler flag
  5933.         00h default error handler
  5934.         01h return network errors to caller
  5935.         02h handle network errors in requester
  5936.     BL = request list length (max 5 fragments) (see #02872)
  5937.     CX = connection handle
  5938.     DH = 00h (reserved)
  5939.     DL = reply list length (max 5 fragments) (see #02872)
  5940.     DS:SI -> address list (each element is DWORD address + WORD length)
  5941.     ES:DI -> address list
  5942.     Return: AX = error code, 0000h if successful (see #02860)
  5943.         BX,DX destroyed
  5944.         ES:DI buffer filled with reply packet fragments
  5945.  08h    TRAN Schedule/Cancel Event
  5946.     BX = subfunction
  5947.         0000h schedule event
  5948.         AX = number of timer ticks to delay before calling function
  5949.         ES:SI -> event control block (including valid call address)
  5950.         0001h cancel event
  5951.         ES:SI -> event control block (including call address)
  5952.     Return: AX = status (0000h = successful) (see #02860)
  5953.  09h    TRAN Get Max Phys Size
  5954.     BX = subfunction
  5955.         00h get maximum node size
  5956.         Return: AX = status (0000h = successful) (see #02860)
  5957.             BX = maximum supported physical packet size
  5958.             DX = size of protocol header
  5959.             SI = RequestReply socket number
  5960.         01h get maximum route size to specified server
  5961.         CX = connection handle for route to be checked
  5962.         Return: AX = status (0000h = successful) (see #02860)
  5963.             DX = maximum supported packet size for current route
  5964.  0Ah    TRAN Broadcast Mux
  5965.     BX = subfunction
  5966.         0001h get stored broadcast (Personal NetWare)
  5967.         ES:DI -> 60-byte buffer for counted ASCIZ message string
  5968.     Return: AX = status (0000h = successful) (see #02860)
  5969.  
  5970. Format of TRAN.VLM request/reply fragment descriptor (array):
  5971. Offset    Size    Description    (Table 02872)
  5972.  00h    DWORD    address of buffer
  5973.  04h    WORD    length of buffer
  5974.  
  5975. (Table 02873)
  5976. Call IPXNCP.VLM (VLM ID 0021h) with:
  5977. Func    Description/Registers
  5978.  01h    IPX Get Version
  5979.     BX = function
  5980.         0000h get version
  5981.         Return: AX = status (see #02860)
  5982.             BX = major version of VLM supported (0001h)
  5983.             CX = minor version of VLM supported (0000h)
  5984.  03h    IPX Statistics
  5985.     CX = length of buffer
  5986.     ES:DI -> buffer for statistics (see #02874)
  5987.     Return:    AX = status (see #02860)
  5988.  06h    IPXNCP Request Reply???
  5989.     functionally equivalent to Tran Request Reply???
  5990.  
  5991. Format of NetWare IPX statistics:
  5992. Offset    Size    Description    (Table 02874)
  5993.  00h    WORD    size of statistics, including this word
  5994.  02h    DWORD    number of TRAN Request Reply calls made
  5995.  06h    WORD    number of user aborts
  5996.  08h    WORD    number of user retries
  5997.  0Ah    WORD    IPX receive errors
  5998.  0Ch    WORD    IPX send errors
  5999.  0Eh    WORD    number of unrecognized responses
  6000.  10h    WORD    number of bad connection numbers in requests
  6001.  12h    WORD    number of bad sequence responses
  6002.  14h    WORD    receive buffer overflows
  6003.  16h    WORD    number of times route to attached server was lost
  6004.  18h    WORD    number of times server responded "busy"
  6005.  1Ah    WORD    number of unknown "NCPRepCompCode" values
  6006.  1Ch    WORD    number of bad connection numbers in responses
  6007.  1Eh    WORD    padding for NETX compatibility
  6008.  20h    WORD    padding for NETX compatibility
  6009.  22h    WORD    number of attach requests to server without route
  6010.  24h    WORD    number of times server responded to attach without slot
  6011.  26h    WORD    number of times a server went down during a request
  6012.  28h    DWORD    same-server optimizations
  6013.  2Ch    WORD    local route changes
  6014.  2Eh    WORD    IPX CRC errors
  6015.  30h    WORD    number of user fails
  6016.  32h    BYTE    flag: CRCs enabled
  6017.  33h    BYTE    flag: LIP enabled
  6018.  34h    BYTE    flag: configurable NET error handler
  6019. SeeAlso: #02873
  6020.  
  6021. (Table 02875)
  6022. Call NWP.VLM (VLM ID 0030h) with:
  6023. Func    Description/Registers
  6024.  01h    NWP Get Version
  6025.     BX = function
  6026.         0000h get version
  6027.         Return: AX = status (see #02860)
  6028.             BX = major version of VLM supported (0001h)
  6029.             CX = minor version of VLM supported (0000h)
  6030.  03h    NWP Statistics
  6031.     CX = size of buffer for statistics
  6032.     ES:DI -> buffer for statistics (see #02876)
  6033.     Return: AX = status (see #02860)
  6034.  04h    NWP Connect
  6035.     DL = resource count state (NDS connections only)
  6036.     CX = proposed connection handle (not yet connected to server)
  6037.     DS:SI -> 48-byte server name (NUL-terminated if less than 48 bytes)
  6038.     Return: AX = status (0000h = successful) (see #02860)
  6039.         CX = actual connection handle to use
  6040.     Note:    if the returned handle differs from the proposed handle, the
  6041.           proposed handle should be freed
  6042.  05h    NWP Disconnect
  6043.     DL = ???
  6044.         00h global disconnect -- clear all resources associated with conn.
  6045.         01h destroy connection -- send disconnect request to server
  6046.     CX = connected connection handle
  6047.     Return: AX = status (0000h = successful) (see #02860)
  6048.  06h    NWP Attach
  6049.     DL = resource count state (NDS connections only)
  6050.     CX = connection handle (allocated by not yet attached to server)
  6051.     DS:SI -> full network address for desired server
  6052.     Return: AX = status (0000h = successful) (see #02860)
  6053.  08h    NWP Login
  6054.     BX = object type
  6055.     CX = connection handle (must be connected) to be authenticated
  6056.     DS:SI -> ASCIZ user name (max 48 bytes)
  6057.     ES:DI -> ASCIZ user password (max 128 bytes)
  6058.     Return: AX = status (0000h = successful) (see #02860)
  6059.  09h    NWP Logout
  6060.     CX = connection handle
  6061.     Return: AX = status (0000h = successful) (see #02860)
  6062.  0Ah    NWP Get Bindery Object/Get Message Handler
  6063.     BX = subfunction
  6064.         0002h set workstation's broadcast message mode
  6065.         DL = message mode
  6066.             00h client hold client message set on, retrieve/display on
  6067.             01h client hold client message set off, retr/display on
  6068.             02h client hold client message set on, retrieve/dislay off
  6069.             03h client hold client message set off, retr/display off
  6070.             04h get current message mode
  6071.             05h set broadcast callback
  6072.             CX:SI -> callback handler
  6073.             06h get broadcast timeout
  6074.             07h set broadcast timeout
  6075.             CX = timeout in timer ticks (0000h = never)
  6076.         CX = connection handle, or 0000h to notify all servers
  6077.         0003h get object ID for object name
  6078.         AX = object type (big-endian)
  6079.         CX = connection handle
  6080.         DX = length of object name
  6081.         ES:DI -> uppercased ASCIZ object name
  6082.         Return: AX = status (see #02860)
  6083.             DX:BX = object ID
  6084.         0004h get object name for object ID
  6085.         DX:SI = object ID
  6086.         CX = connection handle for server which is to do the lookup
  6087.         ES:DI -> 48-byte buffer for object name
  6088.         Return: AX = status (see #02860)
  6089.         0005h retrieve broadcast message
  6090.  0Ch    NDS Fragment Request (passed to NDS.VLM's function 0Ch) (see #02877)
  6091.     AX = verb or request type
  6092.     CX = connection handle
  6093.     DS:SI -> request structure (DWORD data address followed by WORD size)
  6094.     ES:DI -> buffer for reply structure (same format as request)
  6095.     Return: AX = status (0000h = successful) (see #02860)
  6096.  0Eh    NWP Ordered Send To All
  6097.     AL = NCP request code
  6098.     AH = inverse request code (FFh if none) to back out from failures
  6099.     BX = number of fragments in request list
  6100.     DX = number of fragments in reply list buffer
  6101.     DS:SI -> request fragment list
  6102.     ES:DI -> reply fragment list
  6103.     Return: AX = status (see #02860)
  6104.         BX, CX, DX destroyed
  6105.     Note:    the available functions are described under INT 21/AX=F2xxh
  6106.  0Fh    NWP Preferred Handler
  6107.     BX = subfunction
  6108.         0000h get preferred connection name
  6109.         DX = VLM ID (NDS/BIND/PNW)
  6110.         ES:DI -> 49-byte buffer for connection name
  6111.         Return: ES:DI buffer filled
  6112.         0001h set preferred connection name
  6113.         DX = VLM ID (NDS/BIND/PNW)
  6114.         CX = length of connection name (may be 0000h, max 48)
  6115.         DS:SI -> name of preferred connection
  6116.         0002h get preferred connection ID
  6117.         DX = VLM ID (NDS/BIND/PNW)
  6118.         Return: AX = status (see #02860)
  6119.             CX = connection handle if successful
  6120.         0003h get server address
  6121.         CX = connection handle or 0000h
  6122.         DS:SI -> ASCIZ name to be resolved
  6123.         ES:DI -> 12-byte buffer for server address
  6124.  10h    NWP Security???
  6125.     BX = subfunction
  6126.         0001h get security flags (see also INT 21/AX=B301h)
  6127.         Return: BX:CX indicates signature level
  6128.                 = 0100h:0000h if signature level=0
  6129.                 = 0300h:0000h if signature level=1
  6130.                 = 0302h:0000h if signature level=2
  6131.                 = 0302h:0202h if signature level=3
  6132.         0002h create session keys (see also INT 21/AX=B302h)
  6133.         CX = server connection handle
  6134.         DS:SI -> 24-byte input buffer
  6135.         0004h set security flags (see also INT 21/AX=B304h)
  6136.         BL:CL = new flags
  6137.         0006h renegotiate security level (see also INT 21/AX=B306h)
  6138.         CX = server connection number (01h-08h)
  6139.  
  6140. Format of NWP.VLM statistics:
  6141. Offset    Size    Description    (Table 02876)
  6142.  00h    WORD    size of statistics record (including this byte)
  6143.  02h    BYTE    flag: Large Internet Packets enabled
  6144.  03h    BYTE    bit flags: enabled security features
  6145.  04h    BYTE    bit flags: preferred security features
  6146.  05h    BYTE    bit flags: required security features
  6147.  06h    BYTE    minimum level of required security
  6148. SeeAlso: #02875
  6149.  
  6150. (Table 02877)
  6151. Call NDS.VLM (VLM ID 0032h) with:
  6152. Func    Description/Registers
  6153.  01h    NDS Get Version
  6154.     BX = function
  6155.         0000h get version
  6156.         Return: AX = status (see #02860)
  6157.             BX = major version of VLM supported (0001h)
  6158.             CX = minor version of VLM supported (0000h)
  6159.  03h    NDS Statistics
  6160.  06h    NDS Attach
  6161.     CX = allocated connection handle
  6162.     DS:SI -> server address
  6163.  08h    NDS Fragment Requst
  6164.     Return: AX = 8836h (invalid parameter)
  6165.     Note:    this function was documented but does not work
  6166.  0Ch    NDS context
  6167.     BX = subfunction
  6168.         0000h get default name context
  6169.         CX = length of buffer for default context
  6170.         ES:DI -> buffer to receive name
  6171.         Return: ES:DI buffer filled
  6172.         0001h set default context
  6173.         CX = length of new default context name
  6174.         DS:SI -> context name
  6175.         0002h read from TDS
  6176.         CX = reply buffer length
  6177.         DX = 0110h ???
  6178.         SI = offset in TDS
  6179.         ES:DI -> reply buffer
  6180.         0003h write to TDS
  6181.         0005h "NWDSChangeResourceConnection/Lock Connection"
  6182.         CX = connection handle
  6183.         DL = subfunction (00h-09h)
  6184.             04h = NWDSChangeResourceOnConnection
  6185.             07h = NWDSChangeResourceOnConnection
  6186.             08h = NWDSLockConnection
  6187.         0006h NDS change connection state (internal)
  6188.         CX = connection handle
  6189.         AL = 00h or 01h
  6190.         0007h "NWDSSetMonitoredConnection"
  6191.         AX = subfunction
  6192.             0001h get monitored connection
  6193.             Return: CX = connection handle???
  6194.             0002h set monitored connection
  6195.             CX = connection handle???
  6196.         0008h send NDS request
  6197.         AX = NDS function
  6198.         CX = connection handle
  6199.         DS:SI -> request buffer descriptor (see #02878)
  6200.         ES:DI -> reply buffer descriptor (see #02878)
  6201.         000Ah set NDS CEI Info
  6202.         DL = buffer length
  6203.         DS:SI -> input buffer
  6204.  
  6205. Format of NetWare NDS request/reply buffer descriptor:
  6206. Offset    Size    Description    (Table 02878)
  6207.  00h    DWORD    -> buffer
  6208.  04h    WORD    length of buffer in bytes
  6209. SeeAlso: #02877
  6210.  
  6211. (Table 02879)
  6212. Call REDIR.VLM (VLM ID 0040h) with:
  6213. Func    Description/Registers
  6214.  01h    Redir Get Version
  6215.     BX = function
  6216.         0000h get version
  6217.         Return: AX = status (see #02860)
  6218.             BX = major version of VLM supported (0001h)
  6219.             CX = minor version of VLM supported (0000h)
  6220.  03h    Redir Statistics
  6221.     CX = length of buffer
  6222.     ES:DI -> buffer for statistics (see #02880)
  6223.     Return: AX = status (0000h if successful) (see #02860)
  6224.         buffer filled if successful
  6225.  04h    Redir Build SFT (see INT 21/AH=B4h"NetWare")
  6226.     CX = connection handle
  6227.     ES:DI -> SFT build request (see #02881)
  6228.     Return: AX = 0000h if successful
  6229.             BX = DOS file handle
  6230.  05h    Redir DOS To NW Handle
  6231.     BX = DOS file handle
  6232.     ES:DI -> 11-byte buffer for NetWare handle
  6233.  08h    Redir Specific
  6234.     BX = 0000h get item
  6235.         DS:SI -> ASCIZ string "LPTx" (x='1'-'9') or drive spec ("d:")
  6236.         ES:DI -> 512-byte reply buffer for
  6237.               "\\server\resource",00h,"path",00h
  6238.     Return: AX = status (0000h if successful) (see #02860)
  6239.  
  6240. Format of REDIR.VLM statistics:
  6241. Offset    Size    Description    (Table 02880)
  6242.  00h    WORD    size of statistics record (including this word)
  6243.  02h    WORD    number of network errors causing a critical error (see INT 24)
  6244.  04h    WORD    number of drives currently redirected
  6245. SeeAlso: #02879
  6246.  
  6247. Format of NetWare SFT build request:
  6248. Offset    Size    Description    (Table 02881)
  6249.  00h  6 BYTEs    NetWare handle
  6250.  06h    WORD    reserved for internal use
  6251.  08h 14 BYTEs    ASCIZ filename
  6252.  16h    BYTE    DOS file attributes
  6253.         bit 7: file is shareable
  6254.  17h    BYTE    reserved
  6255.  18h    LONG    file size
  6256.  1Ch    WORD    creation date
  6257.  1Eh    WORD    last access date or 0000h
  6258.  20h    WORD    last update date or 0000h
  6259.  22h    WORD    last update time or 0000h
  6260.  
  6261. (Table 02882)
  6262. Call File I/O FIO.VLM (VLM ID 0041h) with:
  6263. Func    Description/Registers
  6264.  01h    FIO Get Version
  6265.     BX = function
  6266.         0000h get version
  6267.         Return: AX = status (see #02860)
  6268.             BX = major version of VLM supported (0001h)
  6269.             CX = minor version of VLM supported (0000h)
  6270.  03h    FIO Statistics
  6271.     CX = length of buffer
  6272.     ES:DI -> buffer for statistics (see #02883)
  6273.     Return: AX = status (0000h if successful)
  6274.         buffer filled if successful
  6275.  04h    FIO Remote Copy
  6276.  
  6277. Format of NetWare FIO statistics:
  6278. Offset    Size    Description    (Table 02883)
  6279.  00h    WORD    length of statistics record (including this word)
  6280.  02h    WORD    number of read requests
  6281.  04h    WORD    number of write requests
  6282.  06h    WORD    number of cache read hits
  6283.  08h    WORD    number of cache write hits
  6284.  0Ah    WORD    number of cacheable files with free blocks
  6285.  0Ch    WORD    number of cacheable files without free blocks
  6286.  0Eh    WORD    number of standard read requests
  6287.  10h    WORD    number of standard write requests
  6288.  12h    WORD    number of burst read requests
  6289.  14h    WORD    number of burst write requests
  6290.  16h    BYTE    flag: cache writes enabled
  6291.  17h    BYTE    flag: true commits enabled
  6292.  18h    WORD    number of cache blocks
  6293.  1Ah    WORD    size of a cache buffer
  6294.  1Ch    WORD    number of ECBs for packet bursts (0000h if bursts disabled)
  6295. SeeAlso: #02882
  6296.  
  6297. (Table 02884)
  6298. Call PRINT.VLM (VLM ID 0042h) with:
  6299. Func    Description/Registers
  6300.  01h    Print Get Version
  6301.     BX = function
  6302.         0000h get version
  6303.         Return: AX = status (see #02860)
  6304.             BX = major version of VLM supported (0001h)
  6305.             CX = minor version of VLM supported (0000h)
  6306.  03h    Print Statistics
  6307.     CX = length of buffer
  6308.     ES:DI -> buffer for statistics (see #02885)
  6309.     Return: AX = status (0000h if successful) (see #02860)
  6310.         buffer filled if successful
  6311.  04h    Print Get/Set Data
  6312.     BX = subfunction
  6313.         00h set printer control flags (see #02886)
  6314.         01h get printer control flags
  6315.         02h set extended printer control flags (see #02887)
  6316.         03h get extended printer control flags
  6317.     AX = offset within Print structures at which to start read/write
  6318.     CX = number of bytes to transfer
  6319.     DX = printing device number (00h=LPT1/PRN, 01h=LPT2, etc.)
  6320.     DS:SI -> buffer containing values for flags (subfunctions 00h/02h)
  6321.     ES:DI -> buffer for flags (subfunctions 01h/03h
  6322.     Return: AX = status (see #02860)
  6323.         ---if successful---
  6324.         CX = number of bytes returned (subfunctions 01h/03h)
  6325.         DX = maximum supported size for function/type of data
  6326.  05h    Print Open Capture File
  6327.  07h    Print Get Num Of Printers
  6328.     BX = subfunction
  6329.         0000h get number of physical printers
  6330.         nonzero: get configured printer (from NET.CFG)
  6331.     Return: AX = status (see #02860)
  6332.         ---if successful---
  6333.         BX = number of physical/configured printers
  6334.  08h    Print Redirection
  6335.     BX = subfunction
  6336.         0000h redirect device to queue
  6337.         AX = length of queue name, 0000h to use queue ID
  6338.         CX = connection handle
  6339.         DX = printer/device number (00h=LPT1/PRN, 01h=LPT2, etc.)
  6340.         DS:SI -> uppercased ASCIZ queue name
  6341.         ES:DI -> DWORD queue ID, 00000000h to use queue name
  6342.         0001h test whether device is redirected
  6343.         DX = printer/device number (00h=LPT1/PRN, 01h=LPT2, etc.)
  6344.         0002h cancel redirection
  6345.         DX = printer/device number (00h=LPT1/PRN, 01h=LPT2, etc.)
  6346.         0003h redirect device to file
  6347.         AX = 0000h or 4E57h ('NW')
  6348.         CX = connection handle
  6349.         DX = printer/device number (00h=LPT1/PRN, 01h=LPT2, etc.)
  6350.         ES:DI -> ASCIZ path of file
  6351.         0004h get extended redirection information (see #02886)
  6352.         DX = printer/device number (00h=LPT1/PRN, 01h=LPT2, etc.)
  6353.         ES:DI -> buffer for server/queue name
  6354.         Return: ES:DI buffer filled
  6355.     Return: AX = 0000h if successful
  6356.  09h    Print Flush And Close Job
  6357.     BX = subfunction
  6358.         0000h unconditional close
  6359.         nonzero: conditional close -- close only if concatenate flag is
  6360.           clear
  6361.     DX = index of printing device (00h=LPT1/PRN, 01h=LPT2, etc.)
  6362.     Return: AX = status (see #02860)
  6363.  0Ch    Print Get/Set Banner Name
  6364.     BL = subfunction
  6365.         00h set banner name
  6366.         DS:SI -> ASCIZ banner name (12 bytes, including NUL)
  6367.         01h get banner name
  6368.         ES:DI -> 12-byte buffer for banner name
  6369.     Return: AX = status (see #02860)
  6370.  
  6371. Format of PRINT.VLM statistics:
  6372. Offset    Size    Description    (Table 02885)
  6373.  00h    WOFD    size of statistics buffer (including this word)
  6374.  02h    DWORD    -> old INT 17 handler
  6375.  06h    WORD    number of physical printers reported by BIOS
  6376. SeeAlso: #02884
  6377.  
  6378. Format of PRINT.VLM standard print control information:
  6379. Offset    Size    Description    (Table 02886)
  6380.  00h    BYTE    PFStatus (reserved, 00h)
  6381.  01h    BYTE    print flags (default 80h)
  6382.         bit 2: release job for printing if capture interrupted
  6383.         bit 3: suppress form feed
  6384.         bit 4: notify
  6385.         bit 6: text file
  6386.         bit 7: print banner
  6387.  02h    BYTE    tab size (01h-12h, default 08h)
  6388.  03h    BYTE    number of copies (default 01h)
  6389.  04h    BYTE    ??? (may be number of copies instead of offset 03h)
  6390.  05h    BYTE    form type to be mounted in printer (default 00h)
  6391.  06h    BYTE    reserved (00h)
  6392.  07h 14 BYTEs    banner
  6393.  15h    BYTE    capture printer (LPT) number
  6394.  16h    WORD    capture timeout in seconds
  6395.  18h    BYTE    job concatenation flag (00h or 01h, default 00h)
  6396.  19h    BYTE    maximum lines per page (default 66)
  6397.  1Ah    BYTE    ??? (may be maximum lines instead of offset 19h)
  6398.  1Bh    BYTE    maximum characters per line (default 132)
  6399.  1Ch    BYTE    ??? (may be maximum characters instead of offset 1Ch)
  6400.  1Dh 13 BYTEs    name of form to be mounted in printer
  6401.  2Ah    BYTE    flag: capture active (00h or FFh, default 00h)
  6402.  2Bh    BYTE    flag: capturing to file (00h or 01h, default 00h)
  6403.  2Ch    BYTE    flag: timeout field is being decremented (default 00h)
  6404.  2Dh    DWORD    -> printer setup string
  6405.  31h    DWORD    -> printer reset string
  6406.  35h    BYTE    reserved (01h)
  6407. ---remainder is read-only---
  6408.  36h    BYTE    flag: job has started printing (00h or FFh, default 00h)
  6409.  37h    BYTE    flag: job placed in queue (00h or FFh, default 00h)
  6410.  38h    BYTE    flag: PJobValid (00h or FFh, default 00h)
  6411.         FFh if associated capture file is open for capturing data
  6412.  39h    DWORD    print-queue ID
  6413.  3Dh    WORD    print-job number (default 00h) (1-999)
  6414.  3Fh    BYTE    number of chars in INT 17h print cache buffer (default 00h)
  6415.  40h    BYTE    ???
  6416.  41h    WORD    high word of print-job number (default 00h)
  6417. SeeAlso: #02884,#02887
  6418.  
  6419. Format of PRINT.VLM extended print control information:
  6420. Offset    Size    Description    (Table 02887)
  6421.  00h    DWORD    NDS printer object ID or directory entry number (when capturing
  6422.           to a file)
  6423.  04h    BYTE    connection handle for server
  6424.  06h 48 BYTEs    ASCIZ print queue name on server
  6425.  36h    DWORD    ID of target server, or FFFFFFFFh if any server may be used
  6426.  3Ah  6 BYTEs    target print time, FFFFFFFFFFFFh for immediate printing
  6427.  40h    BYTE    status flags
  6428.  41h    BYTE    ???
  6429.  42h 13 BYTEs    client's banner name (overrides global banner if set)
  6430.  4Fh 13 BYTEs    job description
  6431.  5Ch  4 BYTEs    reserved (0)
  6432. SeeAlso: #02884,#02886
  6433.  
  6434. (Table 02888)
  6435. Call GENERAL.VLM (VLM ID 0043h) with:
  6436. Func    Description/Registers
  6437.  01h    Gen Get Version
  6438.     BX = function
  6439.         0000h get version
  6440.         Return: AX = status (see #02860)
  6441.             BX = major version of VLM supported (0001h)
  6442.             CX = minor version of VLM supported (0000h)
  6443.  03h    Gen Statistics
  6444.     CX = length of statistics buffer
  6445.     ES:DI -> buffer for statistics (see #02889)
  6446.     Return: AX = status (see #02860)
  6447.  04h    Gen Get/Set Primary
  6448.     BX = subfunction
  6449.         0001h get primary connection
  6450.         CX = primary connection handle to be retrieved
  6451.         Return: AX = status (see #02860)
  6452.             CX = primary connection handle
  6453.         0002h set primary connection
  6454.         CX = primary connection handle to be stored
  6455.         Return: AX = status (see #02860)
  6456.  06h    Gen Specific
  6457.     BX = subfunction
  6458.         0000h get command processor and master environment addresses
  6459.         Return: DX = segment of master environment
  6460.             ES:DI -> command processor's private COMSPEC= copy
  6461.         0001h get default or primary connection
  6462.         Return: AX = status (0000h successful)
  6463.             CX = connection handle if successful
  6464.         0002h last queue information
  6465.         AL = operation
  6466.             00h zap
  6467.             01h set
  6468.             02h get
  6469.         DI:DX = queue file handle
  6470.         CX = connection handle
  6471.         Return: AX = status (0000h successful)
  6472.             DI:DX = queue file handle
  6473.             CX = connection handle or 0000h if queue info invalid
  6474.         0003h get/set machine name(s)
  6475.         AX = name type
  6476.             00h get short machine name
  6477.             02h get long machine name
  6478.             04h set short machine name
  6479.             06h set long machine name
  6480.             08h get DOS name
  6481.             0Ah set DOS name
  6482.         ES:SI -> ASCIZ name if setting
  6483.         Return: AX = status (0000h if successful)
  6484.             ES:SI -> ASCIZ name if getting
  6485.         0004h set per-task EXEC search mode
  6486.         Return: AX = status (0000h if successful)
  6487.  09h    Gen Return Drive Info
  6488.     BX = subfunction
  6489.         0000h get first available drive
  6490.         Return: AX = status (see #02860)
  6491.             BX = drive letter of first drive
  6492.         0001h get Lastdrive
  6493.         Return: AX = status (see #02860)
  6494.             CH = number lastdrive 1=A: - 1Ah=Z:
  6495.  
  6496. Format of NetWare GENERAL.VLM statistics:
  6497. Offset    Size    Description    (Table 02889)
  6498.  00h    WORD    size of statistics record, including this word
  6499.  02h    DWORD    previous INT 21 vector
  6500. SeeAlso: #02888
  6501.  
  6502. (Table 02890)
  6503. Call NETX.VLM (VLM ID 0050h) with:
  6504. Func    Description/Registers
  6505.  01h    NetX Get Version
  6506.     BX = function
  6507.         0000h get version
  6508.         Return: AX = status (see #02860)
  6509.             BX = major version of VLM supported (0001h)
  6510.             CX = minor version of VLM supported (0000h)
  6511.  03h    NetX Statistics
  6512.     CX = length of statistics buffer
  6513.     ES:DI -> buffer for statistics (see #02891)
  6514.     Return: AX = status (see #02860)
  6515.  
  6516. Format of NETX.VLM statistics:
  6517. Offset    Size    Description    (Table 02891)
  6518.  00h    WORD    buffer size, including this word
  6519.  02h    DWORD    previous INT 21 handler
  6520. SeeAlso: #02890
  6521.  
  6522. (Table 02892)
  6523. Call SECURITY.VLM (VLM ID 0061h) with:
  6524. Func    Description/Registers
  6525.  01h    Security Get Version
  6526.     BX = function
  6527.         0000h get version
  6528.         Return: AX = status (see #02860)
  6529.             BX = major version of VLM supported (0001h)
  6530.             CX = minor version of VLM supported (0000h)
  6531.  03h    Security Statistics
  6532.  04h    ???
  6533.     AL = subfunction
  6534.         01h compute session key
  6535.         DS:SI -> 24-byte input buffer
  6536.         ES:DI -> 8-byte output buffer
  6537. --------N-2F7A20BX0001-----------------------
  6538. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM CallA ADDRESS
  6539.     AX = 7A20h
  6540.     BX = 0001h
  6541. Return: AX = 0000h if request was handled
  6542.         ES:BX -> CallA entry point (see #02893)
  6543. SeeAlso: AX=7A20h/BX=0000h
  6544.  
  6545. (Table 02893)
  6546. Call VLM CallA entry point with:
  6547.     AX = function
  6548.         0000h submit
  6549.         0001h cancel (not implemented)
  6550.     ES:DI -> Overlay Asynchronous Control Block structure (see #02894)
  6551. Return: DI, DS, ES preserved; all other registers may be destroyed
  6552.     interrupts disabled
  6553. Desc:    asychronously call the specified VLM and then return to caller, which
  6554.       might be another VLM
  6555.  
  6556. Format of Overlay Asynchronous Control Block (OACB):
  6557. Offset    Size    Description    (Table 02894)
  6558.  00h    DWORD    link to next OACB, 0000h:0000h if last (filled by VLM.EXE)
  6559.  04h    DWORD    callback address or 0000h:0000h
  6560.  08h    BYTE    InUse flag (00h if complete) (set by VLM.EXE)
  6561.  09h    BYTE    flag, reserved for VLM use
  6562.  0Ah    WORD    destination VLM
  6563.  0Ch    WORD    destination function
  6564.  0Eh    WORD    temporary storage for VLM.EXE
  6565.  10h  6 BYTEs    reserved
  6566.  16h  6 DWORDs    EAX,EBX,ECX,EDX,ESI,EDI
  6567.  2Eh  4 WORDs    DS,ES,FS,GS (FS and GS not used)
  6568. --------N-2F7A20BX0002-----------------------
  6569. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM MULTIPLEX ADDRESS
  6570.     AX = 7A20h
  6571.     BX = 0002h
  6572. Return: AX = 0000h
  6573.     ES:BX -> VLM multiplex entry point (see #02895)
  6574. Note:    for v1.10, this function is only available while VLM.EXE is loading
  6575.       the .VLM modules, because ES is destroyed on return
  6576. SeeAlso: AX=7A20h/BX=0000h,AX=7A20h/BX=0001h,AX=7A20h/BX=0003h
  6577.  
  6578. (Table 02895)
  6579. Call DOS Requester entry point with:
  6580.     BX = function???
  6581.         0000h
  6582.         DX = ???
  6583.         DI = ???
  6584.         BP = ???
  6585.         0002h
  6586.         CX = ???
  6587.         0003h
  6588.         DX = ???
  6589.         BP = ???
  6590.         0006h
  6591.         AH = subfunction???
  6592.         AL = ???
  6593.         STACK: variable (0, 4, 10, 14 bytes seen)
  6594. --------N-2F7A20BX0003-----------------------
  6595. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM PARSE API ADDRESS
  6596.     AX = 7A20h
  6597.     BX = 0003h
  6598. Return: AX = 0000h if request was handled
  6599.         ES:BX -> VLM parse API entry point
  6600. --------N-2F7A20BX0004-----------------------
  6601. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM MULTICAST CALLOUT
  6602.     AX = 7A20h
  6603.     BX = 0004h
  6604. Return: AX = 0000h if request was handled
  6605.         ES:BX -> VLM multicast data (see #02896)
  6606. SeeAlso: AX=7A20h/BX=0000h,AX=7A20h/BX=0002h,AX=7A20h/BX=0005h
  6607.  
  6608. Format of DOS Requester data:
  6609. Offset    Size    Description    (Table 02896)
  6610.  00h    DWORD    pointer to ??? (code)
  6611.  04h  4 BYTEs    ???
  6612.  08h    DWORD    pointer to ??? (code) (see #02897)
  6613.     ???
  6614.  
  6615. (Table 02897)
  6616. Call offset 08h function with:
  6617.     AL = function (00h-07h)
  6618.     ???
  6619. Return: ???
  6620. --------N-2F7A20BX0005-----------------------
  6621. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET VLM INT 24 ADDRESS
  6622.     AX = 7A20h
  6623.     BX = 0005h
  6624. Return: AX = 0000h if request was handled
  6625.         ES:BX -> VLM INT 24 handler
  6626. SeeAlso: AX=7A20h/BX=0000h,AX=7A20h/BX=0002h,AX=7A20h/BX=0004h
  6627. --------N-2F7A20BX0006-----------------------
  6628. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  6629.     AX = 7A20h
  6630.     BX = 0006h
  6631. Return: AX = 0000h if request was handled
  6632.         ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  6633. --------N-2F7A20BX0007-----------------------
  6634. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  6635.     AX = 7A20h
  6636.     BX = 0007h
  6637. Return: AX = 0000h
  6638.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  6639. --------N-2F7A20BX0008-----------------------
  6640. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  6641.     AX = 7A20h
  6642.     BX = 0008h
  6643. Return: AX = 0000h
  6644.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  6645. --------N-2F7A20BX0080-----------------------
  6646. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  6647.     AX = 7A20h
  6648.     BX = 0080h
  6649. Return: AX = 0000h
  6650.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  6651. Note:    this function is identical to AX=7A20h/BX=0006h in v1.03 and v1.10
  6652. --------N-2F7A20BX0081-----------------------
  6653. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  6654.     AX = 7A20h
  6655.     BX = 0081h
  6656. Return: AX = 0000h
  6657.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  6658. Note:    this function is identical to AX=7A20h/BX=0007h in v1.03 and v1.10
  6659. --------N-2F7A20BX0082-----------------------
  6660. INT 2F - Novell NetWare - DOS Requester v1.03+ - GET ??? ENTRY POINT
  6661.     AX = 7A20h
  6662.     BX = 0082h
  6663. Return: AX = 0000h
  6664.     ES:BX -> ??? entry point (RETF in v1.03 and v1.10)
  6665. Note:    this function is identical to AX=7A20h/BX=0008h in v1.03 and v1.10
  6666. --------N-2F7A21-----------------------------
  6667. INT 2F C - Novell NetWare - DOS Requester - BROADCAST CALLBACK
  6668.     AX = 7A21h
  6669.     CX = server connection (FFFFh if message from Personal NetWare user)
  6670.     interrupts disabled
  6671. Return: CX = 0000h if broadcast handled
  6672.     interrupts disabled
  6673. Note:    this function is only linked into INT 2F when INT 21/AH=DEh/DL=05h
  6674.       has been issued
  6675. SeeAlso: AX=7A22h,AX=7A85h,INT 21/AH=DEh
  6676. --------N-2F7A22-----------------------------
  6677. INT 2F C - Novell NetWare - DOS Requester - BROADCAST/SFT3 INFORM
  6678.     AX = 7A22h
  6679.     DL = function
  6680.         21h ('!') broadcast waiting for workstation
  6681.         40h ('@') SFT3 server-change inform
  6682.     BX = transport type
  6683.         0021h IPX
  6684.         0022h TCP
  6685.     ES:SI -> transport-specific data block
  6686.         (ECB for IPX, undefined for TCP)
  6687.     interrupts disabled
  6688. Return: AX = 0000h if event handled, unchanged if not
  6689.     interrupts disabled
  6690. Note:    this callback is made from within a hardware interrupt handler; a
  6691.       separate call to AX=7A21h is made once the system is in a safe
  6692.       state for receiving the message
  6693. SeeAlso: AX=7A21h
  6694. --------N-2F7A2F-----------------------------
  6695. INT 2F - Novell NetWare - IPXODI v2.12 - GET GNMA SUPPORT
  6696.     AX = 7A2Fh
  6697. Return: AX = 0000h if supported and active
  6698.         BX = support level (0001h)
  6699.         ES:DI -> GNMA entry point (see #02898)
  6700. Program: GNMA is the Generic NetWare Management Agent
  6701. Note:    IPXODI v2.12 is distributed as part of the Personal NetWare system
  6702.       bundled with Novell DOS 7
  6703. SeeAlso: INT 7A/BX=001Fh
  6704.  
  6705. (Table 02898)
  6706. Call IPXODI GNMA entry point with:
  6707.     BX = function
  6708.         0000h Register Responder
  6709.         ES:SI -> responder structure (see #02899)
  6710.         Return: CF clear if successful
  6711.             CF set on error
  6712.             AX = status
  6713.                 FFFFh if specified responder is already registered
  6714.             interrupts enabled
  6715.             all other registers except DS, CS:IP, SS:SP destroyed
  6716.         Note:    the responder structure must not be deallocated until
  6717.               the responder is deregistered
  6718.         0001h Deregister Responder
  6719.         AX = type of responder to deregister
  6720.         Return: AX = status
  6721.                 FFFFh if specified responder not registered
  6722.             interrupts enabled
  6723.             ES:SI buffer from original registration may now be
  6724.                   freed
  6725.             all other registers except DS, CS:IP, SS:SP destroyed
  6726.         0002h Get Responders
  6727.         Return: ES:SI -> head of responder structure list (read-only)
  6728.             interrupts enabled
  6729.             all other registers except DS, CS:IP, SS:SP destroyed
  6730.         Note:    the returned list may change as tasks are swapped in
  6731.               and out
  6732.         0003h Send Acknowledgement
  6733.         AL = completion code
  6734.             00h successful
  6735.             01h-FCh responder-specific
  6736.             FDh invalid function
  6737.         CX = length of return data (0000h if none)
  6738.         DX:SI -> return data
  6739.         Return: interrupts enabled
  6740.             all other registers except DS, CS:IP, SS:SP destroyed
  6741.  
  6742. Format of NetWare GNMA responder structure:
  6743. Offset    Size    Description    (Table 02899)
  6744.  00h    DWORD    -> next responder structure (used by GNMA)
  6745.  04h    DWORD    -> responder's request handler (called by GNMA) (see #02900)
  6746.  08h    WORD    responder ID
  6747.  0Ah    WORD    number of functions supported by responder
  6748.  0Ch    DWORD    reserved for use by GNMA
  6749. SeeAlso: #02898
  6750.  
  6751. (Table 02900)
  6752. Values GNMA responder's request handler is called with:
  6753.     AL = function
  6754.         00h responder request
  6755.         CX = length of request data (not including header) (see #02901)
  6756.         DS:DI -> request data (see #02901)
  6757.         DS:BX -> 528-byte reply buffer
  6758.         ES:SI -> responder structure (see #02899) from registration
  6759.         DF clear
  6760.         interrupts disabled
  6761.         Return: AH = acknowledement status
  6762.                 00h acknowledgment being returned synchronously
  6763.                 nonzero: acknowledgment will be sent via GNMA
  6764.                   function 0003h (see #02898)
  6765.                 CX = length of acknowledement data
  6766.                 DX:BX -> acknowledgment (may use provided
  6767.                       buffer or another buffer)
  6768.             AL = completion code
  6769.                 00h successful
  6770.                 01h-FCh responder-specific
  6771.                 FDh invalid request
  6772.             DF clear
  6773.             interrupts disabled
  6774.             other registers may be destroyed
  6775.         01h responder acknowledgement complete
  6776.         ES:SI -> responder structure (see #02899) from registration
  6777.         DF clear
  6778.         interrupts disabled
  6779.         Return:    DF clear
  6780.             interrupts disabled
  6781.             all registers (except SS:SP) may be destroyed
  6782.         Note:    this function is called if function 00h returned a
  6783.               responder-provided data buffer; once this function
  6784.               is called, the responder may deallocate the buffer
  6785.         02h responder reset
  6786.         ES:SI -> responder structure (see #02899) from registration
  6787.         DF clear
  6788.         interrupts disabled
  6789.         Return:    DF clear
  6790.             interrupts disabled
  6791.             all registers (except SS:SP) may be destroyed
  6792.         Note:    called whenever a network managment application
  6793.               terminates
  6794. Note:    the responder handler should switch to a local stack if it enables
  6795.       interrupts or uses more than a few words of stack space
  6796. SeeAlso: #02899
  6797.  
  6798. Format of GNMA responder request data:
  6799. Offset    Size    Description    (Table 02901)
  6800.  00h    WORD    responder's assigned ID
  6801.  02h    WORD    function number (defined by responder)
  6802.  04h  N BYTEs    data for request (max 528 bytes; actual amount is determined
  6803.           by CX)
  6804. SeeAlso: #02900
  6805. --------N-2F7A2FBX0EDC-----------------------
  6806. INT 2F U - Personal NetWare - HRMIB - UNINSTALL
  6807.     AX = 7A2Fh
  6808.     BX = 0EDCh ('EDC' = Novell European Development Center)
  6809. Return: ???
  6810. SeeAlso: AX=7AA0h
  6811. --------N-2F7A40-----------------------------
  6812. INT 2F - Novell NetWare - TCP/IP Protocol Stack - INSTALLATION CHECK
  6813.     AX = 7A40h
  6814. Return: AX = 7AFFh if installed
  6815.         0000h:BX = address of interrupt vector for MLID ISR
  6816.         CX = version (CH=major, CL=minor)
  6817.         DX = 0000h
  6818.         ES:DI -> entry point for TCP/IP stack (see #02903)
  6819. Notes:    Novell's LAN Workplace for DOS TCPIP.EXE also supports this interface
  6820.     this function is also supported by the Beame&Whiteside BWLWP40 shim,
  6821.       but it only returns AL and ES:DI, and does not support AX=7A41h
  6822. SeeAlso: AX=7A41h,INT 15/AX=DE2Eh,INT 60"Excelan"
  6823.  
  6824.  
  6825. (Table 02902)
  6826. Values for NetWare TCP/IP function code:
  6827.  01h    "accept" accept a network connection request
  6828.  02h    "bind" associate an address with a socket
  6829.  03h    close socket
  6830.     Call:    socket number field set
  6831.  04h    "connect" connect to a remote host
  6832.  05h    "getmyipaddr" get IP address
  6833.     Call:    socket number field in sockaddr set to 0000h
  6834.  06h    "getmymacaddr" get hardware address
  6835.  07h    "getpeername"
  6836.  08h    "getsockname" get socket name
  6837.  09h    "getsockopt" get socket options
  6838.  0Ah    "getsubnetmask" get subnet mask
  6839.  0Bh    "ioctl"
  6840.  0Ch    "listen" wait for connection request on socket
  6841.  0Dh    "select"
  6842.     Return: socket bitmap updated (1=active)
  6843.  0Eh    "setmyipaddr" (obsolete) set IP address
  6844.  0Fh    "setsockopt" set socket options
  6845.  10h    "shutdown"
  6846.  11h    "socket" open socket
  6847.     Call:    socket number field set to 0000h
  6848.     Return: socket number set
  6849.  12h    "recv" get data from peer
  6850.  13h    "recvfrom" get data from specified remote host
  6851.     Call:    socket number set
  6852.         packet length and buffer descriptors set
  6853.     Return:    packet length and receive buffers updated
  6854.         sockaddr field set to source port number + IP address
  6855.  14h    "send" write data to socket
  6856.  15h    "sendto" write data to specified recipient
  6857.     Call:    socket number set
  6858.         flags at offset 18h = 0000h
  6859.         packet length and buffer descriptors set
  6860. ---v4.02+ ---
  6861.  16h    get BOOTP data
  6862.     Return: BOOTP data stored in parameter block (see #02906)
  6863.  17h    "getsnmpinfo"
  6864.  18h    "getpathinfo" get/set configuration???
  6865. ---v4.??? ---
  6866.  19h    "getifn"    get interface number
  6867.  1Ah    "setipinfo"    set IP information
  6868.  1Bh    "getipinfo"    get IP information
  6869.  1Ch    "setdnsinfo"    set DNS information
  6870.  1Dh    "getdnsinfo"    get DNS information
  6871.  1Eh    "setroutes"    set/modify route entry(ies)
  6872.  1Fh    "getroutes"    get route entry(ies)
  6873.  20h    "removeroutes"    remove route entry(ies)
  6874.  21h    "setarpe"    set/modify ARP entry(ies)
  6875.  22h    "getarpe"    get ARP entry(ies)
  6876.  23h    "removearpe"    remove ARP entry(ies)
  6877. Notes:    these functions are based on the Unix socket interface
  6878.     OR function number with 80h to call ESR
  6879. SeeAlso: #02904
  6880.  
  6881. (Table 02903)
  6882. Call NetWare TCP/IP entry point with:
  6883.     ES:SI -> parameter block (see #02904)
  6884. Return: ES:SI parameter block updated
  6885.     DX may be destroyed
  6886.  
  6887. Format of NetWare TCP/IP Request Control Block (RCB):
  6888. Offset    Size    Description    (Table 02904)
  6889.  00h    DWORD    -> next RCB
  6890.  04h    DWORD    -> previous RCB
  6891.  08h    DWORD    -> FAR post routine called if bit 7 of function code set
  6892.  0Ch    BYTE    flags (internal use)
  6893.         bit 0: request in progress
  6894.         bit 1: posted
  6895.         bit 2: Windows
  6896.         bit 3: "PROTBUF"
  6897.         bit 4: "ABORTRCB" for Ctrl-Break handling
  6898.         bit 5: call INT 21/AX=0B00h while blocking
  6899.  0Dh  7 BYTEs    ???
  6900.  14h    BYTE    (ret) temporary result code
  6901.  15h    BYTE    (call) function code (bit 7 set if non-blocking) (see #02902)
  6902.  16h    BYTE    socket number
  6903.  17h    BYTE    (ret) result or error code (see #02905)
  6904. ---accept/bind/connect/getmyipaddr/getpeername/getsockname commands---
  6905.  18h        sockaddr structure (WORD port + DWORD IP address)
  6906. ---close comand---
  6907.  no additional fields
  6908. ---getmymacaddr command---
  6909.  18h  6 BYTEs    low-level hardware network address
  6910. ---BOOTP command---
  6911.  18h 64 BYTEs    BOOTP VSA data (see #02906)
  6912. ---getpathinfo command
  6913.  18h  8 BYTEs    key
  6914.         "TCP_CFG" used by PING.EXE
  6915.  20h 128 BYTEs    path
  6916.  A0h    WORD    length of path in previous field
  6917. ---getsockopt/setsockopt commands---
  6918.  18h    WORD    option name
  6919.         0004h SO_REUSEADDR
  6920.         0008h SO_KEEPALIVE
  6921.         0080h SO_LINGER
  6922.  1Ah    WORD    option value
  6923.  1Ch    WORD    "linger"
  6924. ---getsubnetmask command---
  6925.  18h    DWORD    sockaddr structure (WORD port + DWORD subnet mask)
  6926. ---ioctl command---
  6927.  18h    DWORD    argument value
  6928.  1Ch    WORD    ioctl number
  6929. ---listen command---
  6930.  18h    WORD    maximum allowable connection backlog
  6931. ---select command---
  6932.  18h    WORD    number of sockets
  6933.  1Ah        fd_set readfds (bitmap of sockets)
  6934.         fd_set writefds
  6935.         fd_set expectionfds
  6936.     DWORD    timeout in clock ticks
  6937. ---shutdown command---
  6938.  18h    WORD    shutdown type
  6939. ---socket command---
  6940.  18h    WORD    protocol (1 = ICMP, 6 = TCP, 17 = UDP)
  6941. ---I/O commands (recv,recvfrom,send,sendto)---
  6942.  18h    WORD    flags
  6943.  1Ah  6 BYTEs    sockaddr from/to
  6944.         WORD    port number
  6945.         DWORD    IP address
  6946.  20h    WORD    length of packet sent/received
  6947.  22h    WORD    number of pointer/length pairs following (max 8)
  6948.  24h 6N BYTEs    buffer descriptors, each
  6949.         Offset    Size    Description
  6950.          00h    DWORD    pointer to buffer
  6951.          04h    WORD    length of buffer
  6952. ---getsnmpinfo command---
  6953.  18h    DWORD    (ret) -> ??? data in TCPIP code segment
  6954. --getifn command---
  6955.  18h    WORD    interface number
  6956.  1Ah    WORD    MLID instance number
  6957.  1Ch 128 BYTEs    MLID name
  6958. ---getipinfo/setipinfo commands---
  6959.  18h    WORD    interface number (00h = default)
  6960.  1Ah    DWORD    IP address
  6961.  1Eh    DWORD    IP netmask
  6962.  22h  3 DWORDs    router addresses (00000000h = unused entry)
  6963. ---getdnsinfo/setdnsinfo commands---
  6964.  18h    WORD    interface number (00h = default)
  6965.  1Ah  3 DWORDs    name server IP addresses (00000000h = unused entry)
  6966.  26h 128 BYTEs    domain name
  6967. ---getroutes/setroutes/removeroutes commands---
  6968.  18h    WORD    number of route entries to follow (max 5)
  6969.  1Ah 10N BYTEs    route entries
  6970.         DWORD    destination host/net IP address
  6971.         DWORD    IP address of first router
  6972.         WORD    route type
  6973. ---getarpe/setarpe/removearpe commands---
  6974.  18h    WORD    number of ARP entries to follow (max 16)
  6975.  1Ah 10N BYTEs    ARP entries
  6976.         DWORD    destination IP address
  6977.         6 BYTEs    destination hardware address
  6978. ---other commands---
  6979.  18h  4 WORDs    parameter words 0 to 3 (see #02902 for usage)
  6980.  
  6981. (Table 02905)
  6982. Values for NetWare TCP/IP status:
  6983.  00h    successful
  6984.  04h    would block
  6985.  09h    invalid socket
  6986.  23h    would block
  6987.  24h    operation in progress
  6988.  25h    already in progress
  6989.  26h    not a socket
  6990.  27h    destination address required
  6991.  28h    message too long
  6992.  29h    wrong protocol type for socket
  6993.  2Ah    protocol not available
  6994.  2Bh    protocol not supported
  6995.  2Ch    socket type not supported
  6996.  2Dh    operation not supported on socket
  6997.  2Eh    protocol family not supported
  6998.  2Fh    address family not supported by protocol family
  6999.  30h    address already in use
  7000.  31h    unable to assign requested address
  7001.  32h    network is down
  7002.  33h    network is unreachable
  7003.  34h    network dropped connection
  7004.  35h    software caused connection abort
  7005.  36h    connection reset by peer
  7006.  37h    no buffer space
  7007.  38h    socket is already connected
  7008.  39h    socket is not connected
  7009.  3Ah    socket is in shutdown mode
  7010.  3Bh    too many references
  7011.  3Ch    connection timed out
  7012.  3Dh    connection refused
  7013.  3Eh    too many levels of symbolic links
  7014.  3Fh    file name too long
  7015.  40h    host is down
  7016.  41h    host unreachable
  7017.  42h    protocol stack not installed
  7018.  43h    asynchronous operation not supported
  7019.  44h    synchronous operation not supported
  7020.  45h    no RCB available
  7021.  FFh    blocking (call has not yet returned)
  7022. SeeAlso: #02904
  7023.  
  7024. Format of BOOTP data (stored in parameter block):
  7025. Offset    Size    Description    (Table 02906)
  7026.  18h  4 BYTEs    ???
  7027.  1Ch    BYTE    ??? (01h)
  7028.  1Dh    BYTE    address length (04h)
  7029.  1Eh  4 BYTEs    subnet mask
  7030.  22h    BYTE    ??? (03h)
  7031.  23h    BYTE    ??? (04h)
  7032.  24h  4 BYTEs    IP address of nearest router
  7033.  28h    BYTE    ??? (06h)
  7034.  29h    BYTE    length of following data (08h)
  7035.  2Ah  4 BYTEs    IP address of nameserver 1
  7036.  2Eh  4 BYTEs    IP address of nameserver 2
  7037.  32h    BYTE    ??? (0Ch)
  7038.  33h    BYTE    length of local name
  7039.  34h  N BYTEs    local host name
  7040.     BYTE    FFh (end marker)
  7041. SeeAlso: #02904,#02902
  7042. --------N-2F7A41-----------------------------
  7043. INT 2F U - Novell NetWare - TCP/IP Protocol Stack - WINDOWS SUPPORT???
  7044.     AX = 7A41h
  7045.     ES:DI -> FAR entry point for ??? (will be called with BX=1,2,3,4)
  7046. Return: AX = 7AFFh if supported
  7047.         0000h:BX = address of interrupt vector for MLID ISR
  7048.         CX = version (CH=major, CL=minor)
  7049.         DX = 0000h
  7050.         ES:SI -> DWORD containing passed value of ES:DI
  7051.         ES:DI -> entry point for TCP/IP stack
  7052. Notes:    Novell's LAN Workplace for DOS TCPIP.EXE also supports this interface
  7053.     the pointer which is set to ES:DI is cleared to 0000h:0000h when
  7054.       a Windows exit broadcast is received
  7055. SeeAlso: AX=7A40h
  7056. --------N-2F7A42-----------------------------
  7057. INT 2F U - Novell NetWare - TCPIP.EXE v4.1 - GET ??? ENTRY POINT
  7058.     AX = 7A42h
  7059. Return: AX = 7AFFh if supported
  7060.         ES:DI -> ??? entry point (see #02907)
  7061.  
  7062. (Table 02907)
  7063. Call NetWare TCPIP.EXE entry point with:
  7064.     DX = ???
  7065.     ES:DI -> ??? (see #02908)
  7066. Return: AX = 0000h
  7067.     other registers destroyed
  7068.  
  7069. Format of data buffer:
  7070. Offset    Size    Description    (Table 02908)
  7071.  00h    WORD    offset of WORD ??? or 0000h
  7072.  02h    WORD    offset of DWORD ??? or 0000h
  7073.  04h    WORD    offset of DWORD ??? or 0000h
  7074. --------N-2F7A43-----------------------------
  7075. INT 2F U - Novell NetWare - TCPIP.EXE v4.1 - GET ???
  7076.     AX = 7A43h
  7077. Return: AX = 7AFFh if supported
  7078.         DX = offset of ???
  7079. SeeAlso: AX=7A44h
  7080. --------N-2F7A44-----------------------------
  7081. INT 2F U - Novell NetWare - TCPIP.EXE v4.1 - SET ???
  7082.     AX = 7A44h
  7083.     DX = offset of ??? (see AX=7A43h)
  7084. Return: AX = 7AFFh if supported
  7085. SeeAlso: AX=7A43h
  7086. --------N-2F7A4C-----------------------------
  7087. INT 2F U - Novell NetWare - TCPIP.EXE v4.1 - GET ???
  7088.     AX = 7A4Ch
  7089. Return: AX = 7AFFh if supported
  7090.         BX = ??? (0037h)
  7091.         CX = ??? (001Ch)
  7092. --------N-2F7A4DBX0001-----------------------
  7093. INT 2F U - Novell NetWare - ???
  7094.     AX = 7A4Dh
  7095.     BX = 0001h
  7096.     ES:DI -> ???
  7097. Return: AL = FFh if ???
  7098.         ES:DI -> ???
  7099. Note:    called by NETBIOS.EXE v3.01
  7100. --------N-2F7A4E-----------------------------
  7101. INT 2F U - Novell LAN Workplace for DOS - RARPD.EXE - INSTALLATION CHECK
  7102.     AX = 7A4Eh
  7103. Return: AX = 7AFFh if installed
  7104. SeeAlso: AX=7A4Fh"RARPD"
  7105. --------N-2F7A4F-----------------------------
  7106. INT 2F U - Novell LAN Workplace for DOS - RARPD.EXE - UNINSTALL
  7107.     AX = 7A4Fh
  7108. Return: AX = 7AFFh if installed
  7109.     DX,ES destroyed
  7110. Note:    this call conflicts with SNMP.EXE (both RARPD and SNMP are supplied
  7111.       with LAN Workplace for DOS!), such that running SNMP will uninstall
  7112.       RARPD as SNMP checks whether it is already installed!
  7113. SeeAlso: AX=7A4Eh"RARPD",AX=7A4Fh/BX=0001h
  7114. --------N-2F7A4FBX0001-----------------------
  7115. INT 2F U - Novell NetWare - SNMP.EXE - INSTALLATION CHECK
  7116.     AX = 7A4Fh
  7117.     BX = 0001h
  7118. Return: AX = 7AFFh if installed
  7119. Note:    this call conflicts with RARPD.EXE (both SNMP and RARPD are supplied
  7120.       with LAN Workplace for DOS!), such that running SNMP will uninstall
  7121.       RARPD as SNMP checks whether it is already installed!
  7122. SeeAlso: AX=7A4Fh"RARPD",AX=7A4Fh/BX=0002h
  7123. --------N-2F7A4FBX0002-----------------------
  7124. INT 2F U - Novell NetWare - SNMP.EXE - ???
  7125.     AX = 7A4Fh
  7126.     BX = 0002h
  7127. Return: AL = status
  7128.         4Fh if failed
  7129.         FFh if successful
  7130. SeeAlso: AX=7A4Fh/BX=0001h
  7131. --------N-2F7A80-----------------------------
  7132. INT 2F C - Novell NetWare - SHELL 3.01d BROADCAST - ABNORMAL EXIT
  7133.     AX = 7A80h
  7134. Return: nothing
  7135. Notes:    called on abnormal exit of the NetWare shell to notify other Novell
  7136.       TSRs that it is unsafe to call the shell in the future; also called
  7137.       by NETX.VLM when it is unloaded
  7138.     must be passed through so that all interested programs see the exit
  7139.     on receiving this call, IPXODI clears an internal pointer to a
  7140.       default value; Novell's NETBIOS.EXE clears its INT 21h pointer to
  7141.       0000h:0000h and stops calling it
  7142. SeeAlso: AX=7A81h
  7143. --------N-2F7A81-----------------------------
  7144. INT 2F C - Novell NetWare - SHELL 3.01d BROADCAST - SET SHELL INT 21 HANDLER
  7145.     AX = 7A81h
  7146.     CX:DX -> shell's INT 21h entry point
  7147. Return: nothing
  7148. Notes:    the shell calls this function as it loads to allow interested TSRs
  7149.       and drivers to make a local copy of the shell's entry point
  7150.     must be passed through so that all interested programs see it
  7151. --------N-2F7A85-----------------------------
  7152. INT 2F C - Novell NetWare - shell 3.01 - BROADCAST INFORM
  7153.     AX = 7A85h
  7154.     CX = broadcast server number
  7155. Return: CX = 0000h if broadcast message handled by another program
  7156.     CX unchanged if broadcast not handled
  7157. SeeAlso: AX=7A21h
  7158. --------N-2F7A90-----------------------------
  7159. INT 2F U - Novell NetWare - NETBIOS.EXE 3+ - INSTALLATION CHECK
  7160.     AX = 7A90h
  7161. Return: AL = 00h if present
  7162.         BX = ???
  7163.         CX = PSP segment of NETBIOS resident code
  7164. SeeAlso: AX=7AFEh
  7165. --------N-2F7AA0-----------------------------
  7166. INT 2F U - Personal NetWare - HRMIB - ???
  7167.     AX = 7AA0h
  7168.     BX = function
  7169.         0000h ???
  7170.         0001h ???
  7171. Return: ???
  7172. SeeAlso: AX=7A2Fh/BX=0EDCh
  7173. --------N-2F7AC1-----------------------------
  7174. INT 2F - LAN HiJack - LHR - DISABLE???
  7175.     AX = 7AC1h
  7176. Program: LAN HiJack is a NetWare utility by KDS Software which allows a user
  7177.       to take over control of a workstation remotely; LHR is the program
  7178.       run on the slave workstation
  7179. SeeAlso: AX=7AC8h,AX=7AC9h,AX=7ACFh
  7180. --------N-2F7AC2-----------------------------
  7181. INT 2F - LAN HiJack - LHR - SYNCHRONIZE SHIFT STATES???
  7182.     AX = 7AC2h
  7183. Note:    sets BIOS keyboard status byte to an internal variable
  7184. SeeAlso: AX=7AC3h,AX=7ACFh
  7185. --------N-2F7AC3-----------------------------
  7186. INT 2F - LAN HiJack - LHR - CLEAR ??? FLAG
  7187.     AX = 7AC3h
  7188. SeeAlso: AX=7AC2h,AX=7ACFh
  7189. --------N-2F7AC8-----------------------------
  7190. INT 2F - LAN HiJack - LHR - ENABLE FUNCTIONS
  7191.     AX = 7AC8h
  7192.     BL = function(s) to enable (see #02909)
  7193. SeeAlso: AX=7AC1h,AX=7AC9h,AX=7ACFh
  7194.  
  7195. Bitfields for LAN HiJack function(s) to enable/disable:
  7196. Bit(s)    Description    (Table 02909)
  7197.  0    ???
  7198.  1    remote keyboard enabled
  7199.  2    support remote's mouse
  7200.  3-7    unused
  7201. --------N-2F7AC9-----------------------------
  7202. INT 2F - LAN HiJack - LHR - DISABLE FUNCTIONS
  7203.     AX = 7AC9h
  7204.     BL = function(s) to disable (see #02909)
  7205. SeeAlso: AX=7AC1h,AX=7AC8h
  7206. --------N-2F7ACA-----------------------------
  7207. INT 2F - LAN HiJack - LHJ - ???
  7208.     AX = 7ACAh
  7209.     BL = ???
  7210. Return: ???
  7211. Program: LAN HiJack is a NetWare utility by KDS Software which allows a user
  7212.       to take over control of a workstation remotely; LHJ is the program
  7213.       run on the controlling workstation
  7214. --------N-2F7ACB-----------------------------
  7215. INT 2F - LAN HiJack - LHJ - ???
  7216.     AX = 7ACBh
  7217.     BX = ???
  7218. Return: ???
  7219. Note:    this function appears to be related to the keyboard
  7220. SeeAlso: AX=7ACCh
  7221. --------N-2F7ACC-----------------------------
  7222. INT 2F - LAN HiJack - LHJ - ???
  7223.     AX = 7ACCh
  7224.     BX = ???
  7225. Return: ???
  7226. Note:    this function appears to be related to the mouse
  7227. SeeAlso: AX=7ACBh
  7228. --------N-2F7ACFBX0000-----------------------
  7229. INT 2F - LAN HiJack - LHR - INSTALLATION CHECK
  7230.     AX = 7ACFh
  7231.     BX = 0000h
  7232. Return: BX = segment of resident code if installed
  7233. Program: LAN HiJack is a NetWare utility by KDS Software which allows a user
  7234.       to take over control of a workstation remotely; LHR is the program
  7235.       run on the slave workstation
  7236. --------N-2F7AF0-----------------------------
  7237. INT 2F - Novell NetWare - DOSNP.EXE v1.30G - INSTALLATION CHECK
  7238.     AX = 7AF0h
  7239. Return: AL = FFh if present
  7240.         ES = 7AF0h
  7241.         CX = PSP segment of resident code
  7242. --------N-2F7AF1-----------------------------
  7243. INT 2F - Novell NetWare - Access Server Driver - INSTALLATION CHECK
  7244.     AX = 7AF1h
  7245.     BL = sequence number (01h first driver, 02h second, 00h no driver)
  7246. Return: AX <> 7AF1h if present
  7247.         BH = total number of drivers
  7248.         ---if BL nonzero on entry---
  7249.         AL = number of ports provided by specified driver
  7250.         ES:DI -> driver entry point
  7251.               (see #02910,#02911,#02912,#02913,#02914,#02915,#02916,#02917)
  7252.         ES:DX -> ID string
  7253. SeeAlso: INT 7A/BX=001Ch
  7254.  
  7255. (Table 02910)
  7256. Call Access Server driver "initialize port" function with:
  7257.     AH = 01h
  7258.     AL = port number (00h-0Fh)
  7259.     ES:BX -> configuration parameter block (see #02923)
  7260.     interrupts disabled
  7261. Return: CF clear if successful
  7262.     CF set on error
  7263. SeeAlso: #02911
  7264.  
  7265. (Table 02911)
  7266. Call Access Server driver "get port status" function with:
  7267.     AH = 02h
  7268.     AL = port number (00h-0Fh)
  7269.     interrupts disabled
  7270. Return: CF clear if successful
  7271.         BL = transmitter status (see #02920)
  7272.         BH = receiver status (see #02921)
  7273.         DL = external status signals (see #02922)
  7274.     CF set on error
  7275.     interrupts disabled
  7276. SeeAlso: #02910,#02912,#02915
  7277.  
  7278. (Table 02912)
  7279. Call Access Server driver "get input from port" function with:
  7280.     AH = 03h
  7281.     AL = port number (00h-0Fh)
  7282.     CX = size of data buffer
  7283.     ES:BX -> buffer for data
  7284.     interrupts disabled
  7285. Return: CF clear if successful
  7286.     CF set on error
  7287.     interrupts disabled
  7288.     CX = number of bytes read
  7289. Note:    the driver will add a NUL to the buffer when a break signal is detected
  7290. SeeAlso: #02912,#02913
  7291.  
  7292. (Table 02913)
  7293. Call driver "send output data to port" function with:
  7294.     AH = 04h
  7295.     AL = port number (00h-0Fh)
  7296.     CX = number of bytes to send
  7297.     ES:BX -> buffer containing data
  7298.     interrupts disabled
  7299. Return: CF clear if successful
  7300.     CF set on error
  7301.     interrupts disabled
  7302.     CX = number of bytes actually written
  7303. SeeAlso: #02912,#02914
  7304.  
  7305. (Table 02914)
  7306. Call driver "get I/O character counts" function with:
  7307.     AH = 05h
  7308.     AL = port number (00h-0Fh)
  7309.     interrupts disabled
  7310. Return: CF clear if successful
  7311.         BX = number of bytes pending transmission
  7312.         CX = number of bytes available for reading
  7313.     CF set on error
  7314.     interrupts disabled
  7315. SeeAlso: #02912,#02913
  7316.  
  7317. (Table 02915)
  7318. Call driver "control XON/XOFF" function with:
  7319.     AH = 06h
  7320.     AL = port number (00h-0Fh)
  7321.     DL = new state
  7322.         (00h software flow control disabled, else enabled)
  7323.     interrupts disabled
  7324. Return: CF clear if successful
  7325.     CF set on error
  7326.     interrupts disabled
  7327. SeeAlso: #02916
  7328.  
  7329. (Table 02916)
  7330. Call driver "get error counts and statistics" function with:
  7331.     AH = 07h
  7332.     AL = port number (00h-0Fh)
  7333.     ES:BX -> buffer for statistics (see #02924)
  7334.     interrupts disabled
  7335. Return: CF clear if successful
  7336.         ES:BX buffer filled
  7337.     CF set on error
  7338.     interrupts disabled
  7339. SeeAlso: #02917,#02918,#02919
  7340.  
  7341. (Table 02917)
  7342. Call driver "general request" function with:
  7343.     AH = 08h
  7344.     AL = port number (00h-0Fh)
  7345.     DX = requested operations
  7346.         bit 0: flush transmit buffers
  7347.         bit 1: flush receive buffers
  7348.         bit 4: define XON/XOFF characters
  7349.     ES:BX -> XON/XOFF characters (see #02925) if DX bit 4 set
  7350.     interrupts disabled
  7351. Return: CF clear if successful
  7352.     CF set on error
  7353.     interrupts disabled
  7354.  
  7355. (Table 02918)
  7356. Call driver "deadman timer management" function with:
  7357.     AH = 09h
  7358.     AL = port number (00h-0Fh)
  7359.     BX = next time interval in seconds (0000h to disable timer)
  7360.     interrupts disabled
  7361. Return: CF clear
  7362.     interrupts disabled
  7363. SeeAlso: #02919
  7364.  
  7365. (Table 02919)
  7366. Call driver "get buffer sizes" function with:
  7367.     AH = 0Ah
  7368.     AL = port number (00h-0Fh)
  7369.     interrupts disabled
  7370. Return: CF clear if successful
  7371.        BX = size of transmit buffer
  7372.        CX = size of receive buffer
  7373.     CF set on error
  7374.     interrupts disabled
  7375. SeeAlso: #02918
  7376.  
  7377. (Table 02920)
  7378. Values for Access Server transmitter status:
  7379.  00h    uninitialized
  7380.  01h    ready, not transmitting
  7381.  02h    transmitting
  7382.  03h    XOFF received
  7383.  04h    transmitting, buffer full
  7384.  05h    XOFF received and buffer full
  7385.  
  7386. (Table 02921)
  7387. Values for Access Server receiver status:
  7388.  00h    uninitialized
  7389.  01h    ready
  7390.  02h    receive buffer full, data may have been lost
  7391.  
  7392. Bitfields for external status signals:
  7393. Bit(s)    Description    (Table 02922)
  7394.  7,6    undefined
  7395.  5    CTS active
  7396.  4    DSR active
  7397.  3    DCD active
  7398.  2,1    undefined
  7399.  0    ring indicator
  7400.  
  7401. Format of Access Server configuration parameter block:
  7402. Offset    Size    Description    (Table 02923)
  7403.  00h    BYTE    receive baud rate index
  7404.         00h 50 bps, 01h 75 bps, 02h 110 bps, 03h 134.5 bps,
  7405.         04h 150 bps, 05h 300 bps, 06h 600 bps, 07h 1200 bps,
  7406.         08h 1800 bps, 09h 2000 bps, 0Ah 2400 bps, 0Bh 3600 bps,
  7407.         0Ch 4800 bps, 0Dh 7200 bps, 0Eh 9600 bps, 0Fh 19200 bps,
  7408.         10h 38400 bps, 11h 57600 bps, 12h 115200 bps
  7409.  01h    BYTE    receive bits per character (0=5 bits..3=8 bits)
  7410.  02h    BYTE    receive stop bits
  7411.  03h    BYTE    receive parity
  7412.         00h none, 01h odd, 02h even, 03h mark, 04h space
  7413.  04h    BYTE    transmit baud rate index (same as receive baud rate)
  7414.  05h    BYTE    transmit bits per character (0=5 bits..3=8 bits)
  7415.  06h    BYTE    transmit stop bits
  7416.  07h    BYTE    transmit parity (same as receive parity)
  7417.  08h    BYTE    DTR state (00h off, 01h on)
  7418.  09h    BYTE    RTS state (00h off, 01h on)
  7419.  0Ah    BYTE    flow control (00h none, 01h XON/XOFF, 02h RTS/CTS, 03h both)
  7420.  0Bh    BYTE    break control (00h off, 01h on)
  7421.  
  7422. Format of Access Server statistics:
  7423. Offset    Size    Description    (Table 02924)
  7424.  00h    BYTE    port number
  7425.  01h    BYTE    external status signals (see #02922)
  7426.  02h    BYTE    transmitter status (see #02920)
  7427.  03h    BYTE    receiver status (see #02921)
  7428.  04h    DWORD    number of characters received
  7429.  08h    DWORD    number of characters transmitted
  7430.  0Ch    WORD    input parity errors
  7431.  0Eh    WORD    input framing errors
  7432.  10h    WORD    lost characters due to hardware overrun
  7433.  12h    WORD    lost characters due to data buffer overrun
  7434. Note:    the counts are not allowed to wrap around; once a count reaches FFFFh
  7435.       or FFFFFFFFh, it is no longer incremented
  7436.  
  7437. Format of Access Server XON/XOFF characters:
  7438. Offset    Size    Description    (Table 02925)
  7439.  00h    BYTE    04h (number of bytes following)
  7440.  01h    BYTE    transmit XON character
  7441.  02h    BYTE    transmit XOFF character
  7442.  03h    BYTE    receive XON character
  7443.  04h    BYTE    receive XOFF character
  7444. --------N-2F7AFE-----------------------------
  7445. INT 2F U - Novell NetWare - DOSNP.EXE - INSTALLATION CHECK
  7446.     AX = 7AFEh
  7447. Return: AL = FFh if present
  7448.         ES = (data???) segment of DOSNP
  7449. Program: DOSNP.EXE provides "named pipes" support for DOS workstations running
  7450.        NetWare
  7451. Note:    the NetWare shell calls this function and refuses to load if DOSNP is
  7452.       present
  7453. SeeAlso: AX=7A90h
  7454. --------N-2F7AFFBX0000-----------------------
  7455. INT 2F - Novell NetWare - TBMI v1.1+ - INSTALLATION CHECK / Windows SUPPORT
  7456.     AX = 7AFFh
  7457.     BX = 0000h
  7458.     CX = 4E65h ("Ne")
  7459.     DX = 7457h ("tW")
  7460.     ES:DI -> Windows support procedure (see #02926)
  7461. Return: AL = FFh if installed
  7462.         CX = configured sockets (14h)
  7463.         DS:SI -> data table ???
  7464.         ES:DI -> IPX far call handler
  7465. Notes:    for IPX/SPX this call reportedly returns DS:SI pointing to the table
  7466.       of pointers to service events queue head and tail
  7467.     this function is also supported by IPXODI; v2.12 does not change DS,
  7468.       but does set SI to an internal address
  7469. SeeAlso: AX=7AFFh/BX=0001h
  7470.  
  7471. (Table 02926)
  7472. Values Windows support procedure called with:
  7473.     BP = function
  7474.         0001h Get ECB
  7475.         BX = socket number
  7476.         Return: ES:SI -> ECB or 0000h:0000h if none available
  7477.         0002h Count Listen ECBs
  7478.         AX = BX = socket
  7479.         Return: CX = number of listen ECBs for socket
  7480.                 (must be >= 2 for SPX to work)
  7481.         0003h ???
  7482.         0004h Inform task switcher of ECB locations
  7483.         Note:    registers other than those listed above are equal
  7484.               to the values when IPX was called
  7485. Note:    the support function will not be called if IPX is called with BX
  7486.       bit 15 set
  7487. --------N-2F7AFFBX0001-----------------------
  7488. INT 2F - Novell NetWare - TBMI v1.1+, shell v3.01d - INSTALLATION CHECK???
  7489.     AX = 7AFFh
  7490.     BX = 0001h
  7491.     CX = 4E65h ("Ne")
  7492.     DX = 7457h ("tW")
  7493. Return: AL = FFh if installed
  7494.         CX = ???  (8000h)
  7495.         SI = ??? (or -> ???) (0002h and 0007h seen)
  7496.         ES:DI -> IPX far call handler
  7497.         ES:DX -> 6-byte data area ???
  7498. Note:    this function is also supported by IPXODI, but IPXODI v2.12 does not
  7499.       return ES:DX
  7500. SeeAlso: AX=7AFFh/BX=0000h
  7501. --------d-2F7F00-----------------------------
  7502. INT 2F - Jim Harper's CD-ROM redirector SCSI driver - INSTALLATION CHECK
  7503.     AX = 7F00h
  7504. Return: AL = FFh if installed
  7505. SeeAlso: AX=7F01h"Harper",AX=7F02h"Harper",AX=7F03h"Harper"
  7506. --------P-2F7F00-----------------------------
  7507. INT 2F - PRINDIR v9.0 - INSTALLATION CHECK
  7508.     AX = 7F00h
  7509. Return: AL = FFh if installed
  7510.         BX = version (BH = major, BL = minor)
  7511.         CX:DX -> ASCIZ signature "PRINDIR"
  7512. Range:    AH=7Fh is the default, may be changed at installation time
  7513. Note:    prior versions of PRINDIR used INT 7C or INT 7A
  7514. SeeAlso: AX=7F01h"PRINDIR",AX=7F02h"PRINDIR",AX=7F03h"PRINDIR"
  7515. SeeAlso: AX=7F06h"PRINDIR",AX=7F08h,AX=7F0Ah,AX=7F0Ch,AX=7F0Eh,INT 7C"PRINDIR"
  7516. --------d-2F7F01-----------------------------
  7517. INT 2F - Jim Harper's CD-ROM redirector SCSI driver - DO COMMAND
  7518.     AX = 7F01h
  7519.     DS:DX -> command record (see #02927)
  7520. Return: AL = status
  7521.         00h successful
  7522.         else error code
  7523. SeeAlso: AX=7F00h"Harper",AX=7F02h"Harper",INT 11/AH=FFh"SDLP"
  7524. SeeAlso: INT 21/AX=4402h"ASPI",INT 4F/AX=8100h
  7525.  
  7526. Format of CD-ROM redirector command record:
  7527. Offset    Size    Description    (Table 02927)
  7528.  00h    BYTE    ID
  7529.  01h 10 BYTEs    CDB (Command Descriptor Block) for operation (see #03236,#03237)
  7530.  0Bh    WORD    segment of buffer
  7531.  0Dh    WORD    offset of buffer
  7532.  0Fh    BYTE    status
  7533.  10h    BYTE    sense
  7534.  12h    WORD    count
  7535. --------P-2F7F01-----------------------------
  7536. INT 2F - PRINDIR v9.0 - SET CAPTURE DEVICE
  7537.     AX = 7F01h
  7538.     DX = capture device (as used by /GET commandline option)
  7539. Return: AX = status
  7540.         0000h successful
  7541.         FFFFh invalid device
  7542. SeeAlso: AX=7F00h"PRINDIR",AX=7F02h"PRINDIR",AX=7F03h"PRINDIR"
  7543. SeeAlso: AX=7F05h"PRINDIR"
  7544. --------d-2F7F02-----------------------------
  7545. INT 2F - Jim Harper's CD-ROM redirector SCSI driver - DO RESET
  7546.     AX = 7F02h
  7547. SeeAlso: AX=7F00h,AX=7F01h
  7548. --------P-2F7F02-----------------------------
  7549. INT 2F - PRINDIR v9.0 - SET DESTINATION DEVICE
  7550.     AX = 7F02h
  7551.     DX = destination device number (as used by /PUT commandline option)
  7552. Return: AX = status
  7553.         0000h successful
  7554.         FFFFh invalid device number
  7555. SeeAlso: AX=7F00h"PRINDIR",AX=7F01h"PRINDIR",AX=7F04h"PRINDIR"
  7556. SeeAlso: AX=7F06h"PRINDIR"
  7557. --------d-2F7F03-----------------------------
  7558. INT 2F - Jim Harper's CD-ROM redirector SCSI driver - UNINSTALL
  7559.     AX = 7F03h
  7560. Return: AL = status
  7561.         00h successful
  7562.         01h unable to uninstall
  7563. SeeAlso: AX=7F00h
  7564. --------P-2F7F03-----------------------------
  7565. INT 2F - PRINDIR v9.0 - SET CAPTURE FILENAME
  7566.     AX = 7F03h
  7567.     CX:DX -> ASCIZ name of capture file
  7568. Return: AX = status
  7569.         0000h successful
  7570.         FFFFh name too long
  7571. SeeAlso: AX=7F00h"PRINDIR",AX=7F01h"PRINDIR",AX=7F04h"PRINDIR"
  7572. SeeAlso: AX=7F05h"PRINDIR",AX=7F07h"PRINDIR"
  7573. --------P-2F7F04-----------------------------
  7574. INT 2F - PRINDIR v9.0 - SET LOCK FILENAME
  7575.     AX = 7F04h
  7576.     CX:DX -> ASCIZ name of lock file
  7577. Return: AX = status
  7578.         0000h successful
  7579.         FFFFh invalid device number
  7580. SeeAlso: AX=7F00h"PRINDIR",AX=7F01h"PRINDIR",AX=7F03h"PRINDIR"
  7581. SeeAlso: AX=7F05h,AX=7F06h,AX=7F08h,AX=7F0Ah,AX=7F0Bh
  7582. --------P-2F7F05-----------------------------
  7583. INT 2F - PRINDIR v9.0 - DUMP CAPTURE BUFFER
  7584.     AX = 7F05h
  7585. Return: AX = status
  7586.         0000h successful
  7587. SeeAlso: AX=7F00h"PRINDIR",AX=7F01h"PRINDIR",AX=7F04h"PRINDIR",AX=7F06h
  7588. --------P-2F7F06-----------------------------
  7589. INT 2F - PRINDIR v9.0 - SET NORMAL TEXT COLOR
  7590.     AX = 7F06h
  7591.     DH = new attribute for normal text
  7592. Return: AX = status
  7593.         0000h successful
  7594. SeeAlso: AX=7F00h"PRINDIR",AX=7F01h"PRINDIR",AX=7F05h"PRINDIR",AX=7F07h
  7595. --------P-2F7F07-----------------------------
  7596. INT 2F - PRINDIR v9.0 - SET HIGHLIGHT TEXT COLOR
  7597.     AX = 7F07h
  7598.     DH = new attribute for highlighted text
  7599. Return: AX = status
  7600.         0000h successful
  7601. SeeAlso: AX=7F00h"PRINDIR",AX=7F01h"PRINDIR",AX=7F06h"PRINDIR",AX=7F08h
  7602. --------P-2F7F08-----------------------------
  7603. INT 2F - PRINDIR v9.0 - SET POPUP HOTKEY
  7604.     AX = 7F08h
  7605.     DH = new scancode for hotkey
  7606. Return: AX = status
  7607.         0000h successful
  7608. SeeAlso: AX=7F00h"PRINDIR",AX=7F05h"PRINDIR",AX=7F09h,AX=7F0Bh,AX=7F0Dh
  7609. --------P-2F7F09-----------------------------
  7610. INT 2F - PRINDIR v9.0 - SET BYTE COUNTER DISPLAY
  7611.     AX = 7F09h
  7612.     DH = new state (00h off, 01h on)
  7613. Return: AX = status
  7614.         0000h successful
  7615. SeeAlso: AX=7F00h"PRINDIR",AX=7F07h"PRINDIR",AX=7F08h,AX=7F0Ah,AX=7F0Ch
  7616. --------P-2F7F0A-----------------------------
  7617. INT 2F - PRINDIR v9.0 - SET FLUSH DELAY
  7618.     AX = 7F0Ah
  7619.     DX = number of clock ticks before flushing
  7620. Return: AX = status
  7621.         0000h successful
  7622. SeeAlso: AX=7F00h"PRINDIR",AX=7F07h"PRINDIR",AX=7F09h,AX=7F0Bh,AX=7F0Ch
  7623. --------P-2F7F0B-----------------------------
  7624. INT 2F - PRINDIR v9.0 - SET MINIMUM DUMP SIZE
  7625.     AX = 7F0Bh
  7626.     DX = number of kilobytes to accumulate before dumping
  7627. Return: AX = status
  7628.         0000h successful
  7629. SeeAlso: AX=7F00h"PRINDIR",AX=7F0Ah,AX=7F0Ch,AX=7F0Dh,AX=7F0Eh
  7630. --------P-2F7F0C-----------------------------
  7631. INT 2F - PRINDIR v9.0 - SET ECHO STATE
  7632.     AX = 7F0Ch
  7633.     DX = new state (00h echo off, 01h echo on)
  7634. Return: AX = status
  7635.         0000h successful
  7636. SeeAlso: AX=7F00h"PRINDIR",AX=7F0Ah,AX=7F0Bh,AX=7F0Dh,AX=7F0Eh
  7637. --------P-2F7F0D-----------------------------
  7638. INT 2F - PRINDIR v9.0 - SHOW POPUP PARAMETER MENU
  7639.     AX = 7F0Dh
  7640. Return: AX = status
  7641.         0000h successful
  7642.         else  failed
  7643. SeeAlso: AX=7F00h"PRINDIR",AX=7F0Ah,AX=7F0Bh,AX=7F0Ch,AX=7F0Eh
  7644. --------P-2F7F0E-----------------------------
  7645. INT 2F - PRINDIR v9.0 - SUBMIT BYTE TO CURRENT DESTINATION DEVICE
  7646.     AX = 7F0Eh
  7647.     DL = byte to send to destination device
  7648. Return: AX = status
  7649.         0000h successful
  7650.         else  failed
  7651. SeeAlso: AX=7F00h"PRINDIR",AX=7F0Ah,AX=7F0Bh,AX=7F0Ch,AX=7F0Dh
  7652. ----------2F7F24-----------------------------
  7653. INT 2F - Multiplex - ???
  7654.     AX = 7F24h
  7655.     ???
  7656. Return: ???
  7657. Note:    called by PC/370, an IBM 370 emulator by Donald S. Higgins
  7658. ----------2F7F26-----------------------------
  7659. INT 2F - Multiplex - ???
  7660.     AX = 7F26h
  7661.     ???
  7662. Return: ???
  7663. Note:    called by PC/370, an IBM 370 emulator by Donald S. Higgins
  7664. --------N-2F8000-----------------------------
  7665. INT 2F - EASY-NET - INSTALLATION CHECK
  7666.     AX = 8000h
  7667. Return: AL = 00h not installed
  7668.          FFh installed
  7669. Program: EASY-NET is a shareware two-machine serial-port network
  7670. --------N-2F8000-----------------------------
  7671. INT 2F - Nanosoft, Inc. TurboNET server - INSTALLATION CHECK
  7672.     AX = 8000h
  7673. Return: AL = FFh if installed
  7674.         BX = CS of resident code
  7675.         CX = ??? (03FCh)
  7676. Program: TurboNET is a NetBIOS-based file redirector and server; a
  7677.       demonstration version may be downloaded from Nanosoft's BBS
  7678. SeeAlso: AX=8100h
  7679. --------t-2F8000-----------------------------
  7680. INT 2F - CS_TSR specification - TSR INSTALLATION CHECK
  7681.     AX = 8000h
  7682.     DS:SI -> 4-byte CS_TSR signature (11h 43h 53h 10h)
  7683. Return: AL = status
  7684.         00h no CS_TSR-compliant TSRs installed
  7685.         01h installed, but signature did not match
  7686.         FFh installed, signature matches
  7687.         ES:DI -> resident process block (see #02928) of last installed
  7688.               TSR (if DS:SI pointed at signature on entry)
  7689. Program: the CS_TSR specification is a standardized TSR interface by Compact
  7690.       Soft group in Kiev, Ukraine
  7691. Desc:    determine whether any CS_TSR-compliant TSRs are installed on the
  7692.       selected multiplex number
  7693. Range:    AH=80h to AH=FFh
  7694. SeeAlso: AX=8001h"CS_TSR",AX=8002h"CS_TSR",AX=8003h"CS_TSR"
  7695.  
  7696. Format of CS_TSR process block:
  7697. Offset    Size    Description    (Table 02928)
  7698.  00h  4 BYTEs    CS_TSR signature 11h 43h 53h 10h
  7699.  04h    BYTE    INT 2F multiplex number
  7700.  05h    WORD    virtual process handle (unique among loaded TSRs)
  7701.  07h  2 BYTEs    version (binary minor version, then major version)
  7702.  09h    WORD    PSP segment of TSR
  7703.  0Bh    DWORD    pointer to ASCIZ program name
  7704.  0Fh  3 BYTEs    program creation date (day, month, year)
  7705.  12h  3 BYTEs    process start time (seconds, minutes, hours)
  7706.  15h  3 BYTEs    process start date (day, month, year)
  7707. --------F-2F8000DX0000-----------------------
  7708. INT 2F - FaxBIOS interface - INSTALLATION CHECK
  7709.     AX = 8000h
  7710.     DX = 0000h
  7711.     DI = 0000h
  7712. Return: AL = FFh if installed
  7713.     DX:DI -> signature "FaxBiosjpc"
  7714. Range:    AH=80h to AH=FFh, selected by scanning multiplex numbers for signature
  7715. SeeAlso: AH=2Ah,AX=80FBh
  7716. --------N-2F8001-----------------------------
  7717. INT 2F - Nanosoft, Inc. TurboNET server - ???
  7718.     AX = 8001h
  7719.     DS:SI -> 16-byte buffer for ???
  7720. Return: AH = status
  7721.         00h successful
  7722.         01h error (TurboNET busy)
  7723. Note:    makes NetBIOS calls
  7724. --------t-2F8001-----------------------------
  7725. INT 2F - CS_TSR specification - GET HANDLE (TSR-SPECIFIC INSTALLATION CHECK)
  7726.     AX = 8001h
  7727.     DS:SI -> ASCIZ signature string for desired TSR (see #02929)
  7728. Return: BX = process handle or 0000h if specified TSR not installed
  7729.     ES:DI -> process block for TSR (see #02928) if BX<>0000h
  7730. Note:    A widely-available copy of ASCII billing itself as "ASCII 2.OO by
  7731.       Nick Zaikin Jr." is in fact a hacked copy of the Compact Soft
  7732.       ASCII v4.23 which is identical except for the changed attribution
  7733.       and version (in fact, some instances of "4.23" were missed); the
  7734.       hacked copy requires the signature string
  7735.       "ASCII 2.OO by Nick Zaikin Jr." instead of the unhacked version's
  7736.       simple signature "ASCII"
  7737. SeeAlso: AX=8000h"CS_TSR",AX=8002h"CS_TSR"
  7738.  
  7739. (Table 02929)
  7740. Values for CS_TSR signature strings:
  7741.  "ASCII"    ASCII, a popup ASCII table with character input
  7742.  "Halculator"    HALC, a 32-bit RPN WYSIWIH calculator with undo and ptr support
  7743.  "AntiTurbo"    AT!, an intelligent system slow-down utility
  7744. --------t-2F8002-----------------------------
  7745. INT 2F - CS_TSR specification - GET PROCESS BLOCK BY PROCESS HANDLE
  7746.     AX = 8002h
  7747.     BX = process handle for TSR (see AX=8001h"CS_TSR")
  7748. Return: ES:DI -> process block for specified TSR (see #02928)
  7749.         unchanged if no match for process handle
  7750. Note:    This function is used to allocate a process handle when the TSR
  7751.       installs itself, by setting ES:DI to point at something other than
  7752.       a CS_TSR process block's signature string and iterating through the
  7753.       possible process handles (0001h to FFFFh) until ES:DI is returned
  7754.       unchanged
  7755. SeeAlso: AX=8000h"CS_TSR",AX=8001h"CS_TSR",AX=8003h"CS_TSR"
  7756. --------t-2F8003-----------------------------
  7757. INT 2F - CS_TSR specification - CUSTOM SUBFUNCTION
  7758.     AX = 8003h
  7759.     BX = process handle for TSR (see AX=8001h"CS_TSR")
  7760.     other registers vary by TSR
  7761. Return: vary by TSR, unchanged if not supported
  7762. Program: the CS_TSR specification is a standardized TSR interface by Compact
  7763.       Soft group in Kiev, Ukraine
  7764. SeeAlso: AX=8000h"CS_TSR",AX=8001h"CS_TSR",AX=8002h"CS_TSR"
  7765. --------F-2F80FB-----------------------------
  7766. INT 2F - FaxBIOS interface - COMMAND SUBMISSION
  7767.     AX = 80FBh
  7768.     BX = function number (see #02930)
  7769.     DX:DI -> command buffer
  7770.           (see #02932,#02935,#02936,#02937,#02938,#02939,#02944,#02950,#02957)
  7771. Return: AL = FFh if submitted OK
  7772.     CX = result code (see #02931)
  7773. Range:    AH=80h to AH=FFh, selected by scanning multiplex numbers for signature
  7774. SeeAlso: AX=8000h"FaxBIOS",AX=CBDDh
  7775.  
  7776. (Table 02930)
  7777. Values for FaxBIOS function number:
  7778.  0001h    SYS_LOGIN
  7779.  0002h    SYS_LOGOUT
  7780.  0003h    SYS_GET_FAXAPP_INFO
  7781.  0004h    STAT_IO_GET
  7782.  0005h    STAT_FAXBIOS_GET
  7783.  0006h    PDIR_OPEN
  7784.  0007h    PDIR_CLOSE (see #02940)
  7785.  0008h    PDIR_READ_PERSON (see #02941)
  7786.  0009h    PDIR_PARTIAL_READ
  7787.  000Ah    PDIR_READ_GROUP
  7788.  000Bh    PDIR_READ_MEMBER_LIST
  7789.  000Ch    PDIR_WRITE_PERSON
  7790.  000Dh    PDIR_WRITE_GROUP
  7791.  000Eh    PDIR_DELETE_PERSON
  7792.  000Fh    PDIR_DELETE_GROUP
  7793.  0010h    PDIR_READ_GROUP_LIST
  7794.  0011h    PDIR_IN_GROUP
  7795.  0012h    PDIR_OUT_GROUP
  7796.  0013h    SCHED_OPEN (see #02942)
  7797.  0014h    SCHED_ADD_DEST (see #02943)
  7798.  0015h    SCHED_ADD_FILE (see #02944)
  7799.  0016h    SCHED_SET_PARAMS (see #02945)
  7800.  0017h    SCHED_CANCEL (see #02942)
  7801.  0018h    SCHED_CLOSE (see #02946)
  7802.  0019h    SLOG_OPEN (see #02947)
  7803.  001Ah    SLOG_CLOSE (see #02947)
  7804.  001Bh    SLOG_SHORT_ENV_STAT
  7805.  001Ch    SLOG_LONG_ENV_STAT
  7806.  001Dh    SLOG_DEST_STAT
  7807.  001Eh    SLOG_FILE_STAT
  7808.  001Fh    SLOG_CANCEL_ENV
  7809.  0020h    RLOG_OPEN (see #02947)
  7810.  0021h    RLOG_CLOSE (see #02947)
  7811.  0022h    RLOG_READ
  7812.  0023h    GRAPH_GET_FILE_TYPE (see #02948)
  7813.  0024h    GRAPH_EXPORT_FILE
  7814.  0025h    GRAPH_GET_LAYOUT_INFO
  7815.  0026h    GRAPH_CREATE_FILE (see #02949)
  7816.  0027h    GRAPH_CLOSE_FILE (see #02950)
  7817.  0028h    GRAPH_CREATE_PAGE (see #02951)
  7818.  0029h    GRAPH_WRITE (see #02952)
  7819.  002Ah    GRAPH_END_PAGE
  7820.  002Bh    GRAPH_OPEN_FILE (see #02953)
  7821.  002Ch    GRAPH_GOTO_PAGE (see #02954)
  7822.  002Dh    GRAPH_READ (see #02955)
  7823.  002Eh    IOCTL_GET
  7824.  002Fh    IOCTL_SET
  7825.  0030h    IOCTL_ANSWER_FAX (see #02956)
  7826.  0031h    IOCTL_DIAL (see #02957)
  7827.  
  7828. (Table 02931)
  7829. Values for FaxBIOS result code:
  7830.  0000h    successful
  7831.  0001h    not prepared or servicing another client (busy)
  7832.  0002h    call failed due to sharing (LOCKED)
  7833.  0003h    logged-in client limit reached (FULL)
  7834.  0004h    transport denied (TRANSPORT_DENIED)
  7835.  0005h    not implemented (NOT_IMPLEMENTED)
  7836.  0006h    aborted while in progress (ABORTED)
  7837.  0007h    permissions denied (PERMISSION_DENIED)
  7838.  0008h    requested data is no longer valid (NO_LONGER_VALID)
  7839.  0080h    unspecified system error occurred
  7840.  0081h    an internal file was not found
  7841.  0082h    an internal file could not be created
  7842.  0083h    an internal file could not be opened
  7843.  0084h    an internal file could not be closed
  7844.  0085h    error occurred writing to an internal file
  7845.  0086h    error occurred reading from an internal file
  7846.  0087h    bad or corrupted file encountered
  7847.  0088h    an access violation occurred
  7848.  0089h    an internal file is empty
  7849.  008Ah    insufficient memory to process request
  7850.  008Bh    FaxBIOS was unable to issue a handle
  7851.  008Ch    an error internal to FaxBIOS occurred
  7852.  008Dh    no room on disk
  7853.  0100h    unspecified error accessing client file
  7854.  0101h    file not found
  7855.  0102h    creation fault
  7856.  0103h    open fault
  7857.  0104h    close fault
  7858.  0105h    write fault
  7859.  0106h    read fault
  7860.  0107h    file corrupted
  7861.  0108h    access violation
  7862.  0109h    empty file
  7863.  0200h    unspecified argument error
  7864.  0201h    bad function
  7865.  0202h    bad option
  7866.  0203h    bad structure size
  7867.  0204h    bad buffer size
  7868.  0205h    bad client ID
  7869.  0300h    unspecified error with token
  7870.  0301h    cover sheet token was invalid
  7871.  0302h    logo token was invalid
  7872.  0303h    signature token was invalid
  7873.  0304h    font token was invalid
  7874.  0305h    phone directory token was invalid
  7875.  0306h    outbound route token was invalid
  7876.  0307h    priority token was invalid
  7877.  0308h    sort token was invalid
  7878.  0309h    billing token was invalid
  7879.  0400h    unspecified handle error
  7880.  0401h    bad Phone Directory handle
  7881.  0402h    bad scheduling handle
  7882.  0403h    bad read send log handle
  7883.  0404h    bad read receive log handle
  7884.  0405h    bad graphics handle
  7885.  0500h    data passed in structure was invalid
  7886.  0501h    name field given is invalid
  7887.  0502h    phone number given is invalid
  7888.  0503h    poll code submitted is invalid
  7889.  0504h    file type constant was invalid
  7890.  0505h    BFT constant not defined or supported
  7891.  0506h    resolution not defined or supported
  7892.  0507h    page length not defined or supported
  7893.  0508h    page width not defined or supported
  7894.  0509h    date & time requested are ridiculous
  7895.  050Ah    Subject text was not an ASCIZ string
  7896.  050Bh    From text was not an ASCIZ string
  7897.  050Ch    requested envelope ID was not found
  7898.  050Dh    requested envelope ID is not valid
  7899.  050Eh    envelope requested was not found
  7900.  050Fh    destination index is out of range
  7901.  0510h    file index is out of range
  7902.  0511h    index into receive log is out of range
  7903.  0512h    file name specified was incomplete or invalid
  7904.  0513h    page selected was out of range
  7905.  0514h    bit width more than byte width
  7906.  0515h    mode for open is not defined
  7907.  0516h    person index is out of range
  7908.  0517h    person ID is out of range
  7909.  0518h    group index out of range or invalid
  7910.  0519h    group ID out of range or invalid
  7911.  051Ah    range of indices to read is invalid
  7912.  051Bh    group name given is invalid
  7913.  051Ch    field_to_use is badly specified
  7914.  051Dh    predicate invalid for field specified
  7915.  0600h    unspecified client procedure error
  7916.  0601h    device of interest is not present
  7917.  0602h    device of interest has been removed
  7918.  0603h    device of interest is not responding
  7919.  0604h    device of interest is disabled
  7920.  0605h    could not dial because device was in use
  7921.  0606h    maximum destination limit exceeded
  7922.  0607h    maximum file limit exceeded
  7923.  0608h    scheduling closed with no destination
  7924.  0609h    scheduling closed with no files or poll
  7925.  060Ah    scheduling closed with no parameters specified
  7926.  060Bh    file type specified does not match file
  7927.  060Ch    file type specified is not supported
  7928.  060Dh    file submitted is not exportable
  7929.  060Eh    file type specified is not imageable
  7930.  060Fh    error converting file
  7931.  0610h    envelope could not be cancelled
  7932.  0611h    Phone Directory is full
  7933.  0612h    record is already in the Phone Directory
  7934.  0613h    selected group in Phone Directory is full
  7935.  0614h    person is already in the group
  7936.  0615h    person is not in the group & cannot be removed
  7937.  0616h    a graphics file to be created already exists
  7938.  0617h    a graphics file to be read is empty
  7939.  0618h    GRAPH_CREATE_PAGE called before GRAPH_END_PAGE
  7940.  0619h    graph read or write attempted without goto or create
  7941.  061Ah    graph page contains no data
  7942.  061Bh    Phone Directory is already open for this client
  7943.  061Ch    schedule log is already open for this client
  7944.  061Dh    receive log is aready open for this client
  7945.  061Eh    Phone Directory function requires write mode
  7946.  0800h    denied exclusive use of the API
  7947.  
  7948. Format of FaxBIOS SYS_LOGIN command buffer:
  7949. Offset    Size    Description    (Table 02932)
  7950.  00h    WORD    structure size
  7951.  02h    WORD    function number
  7952.  04h    WORD    return code
  7953.  06h    WORD    client ID
  7954.  08h    WORD    API Major Version
  7955.  0Ah    WORD    API Minor Version
  7956.  0Ch    DWORD    reserved for manufacturer's use
  7957.  10h 22 BYTEs    manufacturer's ID
  7958.  26h    WORD    highest possible device number
  7959.  28h    WORD    maximum destinations per envelope
  7960.  2Ah    WORD    maximum files per envelope
  7961.  2Ch    WORD    FaxBIOS capabilities (see #02933)
  7962.  2Eh    DWORD    T.30 capabilities (see #02934)
  7963.  32h    WORD    IPC handle
  7964.  34h    DWORD    amount of memory needed to load
  7965.  38h    WORD    scope (00h for public, nonzero for private)
  7966.  3Ah  6 BYTEs    future expansion
  7967.  40h    WORD    structure size
  7968.  
  7969. Bitfields for FaxBIOS capabilities:
  7970. Bit(s)    Description    (Table 02933)
  7971.  0    transmit supported
  7972.  1    receive supported
  7973.  2    IOCTL supported
  7974.  3    IOCTL_DIAL supported
  7975.  4    IOCTL_ANSWER_FAX supported
  7976.  5    manual transmit supported
  7977.  6    optional phone services supported
  7978.  7    canonical phone objects
  7979.  8    seam with next supported
  7980.  
  7981. Bitfields for T.30 capabilities:
  7982. Bit(s)    Description    (Table 02934)
  7983.  0    low vertical resolution (minimum)
  7984.  1    high vertical resolution
  7985.  2    page width 107mm (4.21 in)
  7986.  3    page width 151mm (5.91 in)
  7987.  4    page width 215mm (8.46 in) (minimum)
  7988.  5    page width 255mm (10.04 in)
  7989.  6    page width 303mm (11.93 in)
  7990.  7    unused
  7991.  8    page length 297mm (11.69 in) (minimum)
  7992.  9    page length 364mm (14.33 in)
  7993.  10    page length 279mm (11 in)
  7994.  11    page length unlimited
  7995.  12    Group 4 resolution 300x300
  7996.  13    Group 4 resolution 400x400
  7997.  14    able to respond to poll from remote
  7998.  15    able to poll remote
  7999.  16    binary file transfer supported
  8000.  
  8001. Format of FaxBIOS SYS_LOGOUT command buffer:
  8002. Offset    Size    Description    (Table 02935)
  8003.  00h    WORD    structure size
  8004.  02h    WORD    function number
  8005.  04h    WORD    return code
  8006.  06h    WORD    client ID
  8007.  08h    DWORD    client tag (for client's internal use)
  8008.  0Ch  6 BYTEs    future expansion
  8009.  12h    WORD    structure size
  8010.  
  8011. Format of FaxBIOS SYS_GET_FAXAPP_INFO command buffer:
  8012. Offset    Size    Description    (Table 02936)
  8013.  00h 12 BYTEs    common data (see #02935)
  8014.  0Ch 80 BYTEs    FaxBIOS data
  8015.  5Ch 80 BYTEs    default cover
  8016.  ACh 80 BYTEs    default logo
  8017.  FCh 80 BYTEs    default signature
  8018. 14Ch 80 BYTEs    default font 10
  8019. 19Ch 80 BYTEs    default font 165
  8020. 1ECh 80 BYTEs    default user font
  8021. 23Ch 80 BYTEs    default Pdir
  8022. 28Ch 80 BYTEs    default sort
  8023. 2DCh 10 BYTEs    default bill
  8024. 2E6h 10 BYTEs    default route
  8025. 2F0h 40 BYTEs    default cover sheet form
  8026. 318h 34 BYTEs    valid dial characters
  8027. 33Ah  6 BYTEs    local country code
  8028. 340h  6 BYTEs    local city or area code
  8029. 346h  6 BYTEs    future expansion
  8030. 34Ch    WORD    structure size
  8031.  
  8032. Format of FaxBIOS STAT_IO_GET command buffer:
  8033. Offset    Size    Description    (Table 02937)
  8034.  00h 12 BYTEs    common data (see #02935)
  8035.  0Ch    WORD    device number
  8036.  0Eh    WORD    current activity
  8037.  10h    WORD    number of rings (if ringing)
  8038.  12h    WORD    number of fascimiles transmitted
  8039.  14h    WORD    number of fascimiles received
  8040.  16h    WORD    status of last transmission
  8041.  18h    WORD    envelope number of last transmission
  8042.  1Ah    WORD    index of last destination in envelope
  8043.  1Ch    WORD    status of last reception
  8044.  1Eh    WORD    current page (if session in progress)
  8045.  20h 80 BYTEs    current file
  8046.  70h 104 BYTEs    remote number
  8047.  D8h 20 BYTEs    last name
  8048.  ECh 20 BYTEs    first name
  8049. 100h 32 BYTEs    company name
  8050. 120h 32 BYTEs    notes
  8051. 140h    WORD    current envelope ID (if sending)
  8052. 142h    WORD    total pages in transmission (if sending)
  8053. 144h  6 BYTEs    future expansion
  8054. 14h    WORD    structure size
  8055.  
  8056. Format of FaxBIOS STAT_FAXBIOS_GET command buffer:
  8057. Offset    Size    Description    (Table 02938)
  8058.  00h 12 BYTEs    common data (see #02935)
  8059.  0Ch    WORD    status ID
  8060.  0Eh    WORD    currenty FaxBIOS function number
  8061.  10h    WORD    current Client ID being serviced
  8062.  12h    WORD    number of things to do
  8063.  14h    WORD    number of them done
  8064.  16h    WORD    number of pages to do (if any)
  8065.  18h    WORD    number of them done
  8066.  1Ah    WORD    number of files to do
  8067.  1Ch    WORD    number of them done
  8068.  1Eh 80 BYTEs    current File
  8069.  6Eh    WORD    0 if all devices are idle
  8070.  70h    WORD    number of fascimiles transmitted
  8071.  72h    WORD    number of fascimiles received
  8072.  74h    WORD    status of last transmission in system
  8073.  76h    WORD    envelope ID of last transmission
  8074.  78h    WORD    index of last destination in envelope
  8075.  7Ah    WORD    status of last reception in system
  8076.  7Ch    DWORD    time of next transmission
  8077.  80h  6 BYTEs    future expansion
  8078.  86h    WORD    structure size
  8079.  
  8080. Format of FaxBIOS PDIR_OPEN command buffer:
  8081. Offset    Size    Description    (Table 02939)
  8082.  00h 12 BYTEs    common data (see #02935)
  8083.  0Ch 80 BYTEs    Phone Directory token
  8084.  5Ch 80 BYTEs    sort order token
  8085.  ACh    WORD    open Mode (0 = read, 1 = write)
  8086.  AEh    WORD    Phone Directory handle
  8087.  B0h    WORD    number of people
  8088.  B2h    WORD    number of groups
  8089.  B4h    WORD    bitmap of fields supported by partial read
  8090.  B6h  6 BYTEs    future expansion
  8091.  BCh    WORD    structure size
  8092.  
  8093. Format of FaxBIOS PDIR_CLOSE command buffer:
  8094. Offset    Size    Description    (Table 02940)
  8095.  00h 12 BYTEs    common data (see #02935)
  8096.  0Ch    WORD    Phone Directory handle
  8097.  0Eh  6 BYTEs    future expansion
  8098.  14h    WORD    structure size
  8099.  
  8100. Format of FaxBIOS PDIR_READ_PERSON command buffer:
  8101. Offset    Size    Description    (Table 02941)
  8102.  00h 12 BYTEs    common data (see #02935)
  8103.  0Ch    WORD    Phone Directory handle
  8104.  0Eh    WORD    retrieve by index
  8105.  10h    WORD    person ID or index
  8106.  12h    WORD    how many groups person is in
  8107.  14h    WORD    person ID
  8108.  16h 20 BYTEs    last name
  8109.  2Ah 20 BYTEs    first name
  8110.  3Eh 32 BYTEs    company
  8111.  5Eh 32 BYTEs    notes
  8112.  7Eh  6 BYTEs    FAX country code
  8113.  84h  6 BYTEs    FAX city/area code
  8114.  8Ah 14 BYTEs    FAX local number
  8115.  98h 14 BYTEs    FAX extension
  8116.  A6h 24 BYTEs    reserved
  8117.  BEh  6 BYTEs    voice country code
  8118.  C4h  6 BYTEs    voice city/area code
  8119.  CAh 14 BYTEs    voice local number
  8120.  D8h 14 BYTEs    voice extension
  8121.  E6h 24 BYTEs    reserved
  8122.  FEh 10 BYTEs    outbound routing information
  8123. 108h 10 BYTEs    billing information, credit card etc
  8124. 112h    DWORD    remote FAX capabilities
  8125. 116h 21 BYTEs    T.30 poll code of FAX number
  8126. 12Bh 15 BYTEs    reserved
  8127. 13Ah  6 BYTEs    future expansion
  8128. 140h    WORD    structure size
  8129.  
  8130. Format of FaxBIOS SCHED_OPEN, SCHED_CANCEL command buffer:
  8131. Offset    Size    Description    (Table 02942)
  8132.  00h 12 BYTEs    common data (see #02935)
  8133.  0Ch    WORD    scheduler handle
  8134.  0Eh  6 BYTEs    future expansion
  8135.  14h    WORD    structure size
  8136.  
  8137. Format of FaxBIOS SCHED_ADD_DEST command buffer:
  8138. Offset    Size    Description    (Table 02943)
  8139.  00h 12 BYTEs    common data (see #02935)
  8140.  0Ch    WORD    schedule handle
  8141.  0Eh    WORD    device number if manual send wanted
  8142.  10h    WORD    non-zero if poll desired
  8143.  12h    WORD    person ID
  8144.  14h 20 BYTEs    last name
  8145.  28h 20 BYTEs    first name
  8146.  3Ch 32 BYTEs    company
  8147.  5Ch 32 BYTEs    notes
  8148.  7Ch  6 BYTEs    FAX country code
  8149.  82h  6 BYTEs    FAX city/area code
  8150.  88h 14 BYTEs    FAX local number
  8151.  96h 14 BYTEs    FAX extension
  8152.  A4h 24 BYTEs    reserved
  8153.  BCh  6 BYTEs    voice country code
  8154.  C2h  6 BYTEs    voice city/area code
  8155.  C8h 14 BYTEs    voice local number
  8156.  D6h 14 BYTEs    voice extension
  8157.  E4h 24 BYTEs    reserved
  8158.  FCh 10 BYTEs    outbound routing information
  8159. 106h 10 BYTEs    billing information, credit card etc
  8160. 110h    DWORD    remote FAX capabilities
  8161. 114h 21 BYTEs    T.30 poll code of FAX number
  8162. 129h 15 BYTEs    reserved
  8163. 138h  6 BYTEs    future expansion
  8164. 13Eh    WORD    structure size
  8165. SeeAlso: #02944
  8166.  
  8167. Format of FaxBIOS SCHED_ADD_FILE command buffer:
  8168. Offset    Size    Description    (Table 02944)
  8169.  00h 12 BYTEs    common data (see #02935)
  8170.  0Ch    WORD    schedule handle
  8171.  0Eh    WORD    file type
  8172.         0000h unidentified
  8173.         0001h native file format
  8174.         0002h ASCII
  8175.         0003h FaxBIOS Tiff Class F
  8176.  10h 80 BYTEs    file name
  8177.  60h 80 BYTEs    font token
  8178.  B0h    WORD    conversion options bitmap
  8179.  B2h    WORD    resolution
  8180.         0000h standard 98 lines per inch, 204 dpi
  8181.         0001h fine 196 lines per inch, 204 dpi
  8182.         0002h Group4 300 dpi
  8183.         0003h Group4 400 dpi
  8184.  B4h    WORD    page length
  8185.         0000h 279 mm (11 in)
  8186.         0001h 297 mm (11.69 in)
  8187.         0002h 364 mm (14.33 in)
  8188.         0003h unlimited
  8189.  B6h    WORD    page width
  8190.         0000h 215 mm (8.46 in)
  8191.         0001h 255 mm (10.04 in)
  8192.         0002h 303 mm (11.93 in)
  8193.         0003h 151 mm (5.91 in)
  8194.         0004h 107 mm (4.21 in)
  8195.  B8h    WORD    binary file transfer specification
  8196.         0000h only as FAX
  8197.         0001h only as file (for non-faxable files)
  8198.         0002h as file when possible else FAX
  8199.  BAh    WORD    seam flag (nonzero for seam with next)
  8200.  BCh    WORD    delete flag (nonzero to delete when done)
  8201.  BEh  6 BYTEs    future expansion
  8202.  C4h    WORD    structure size
  8203. SeeAlso: #02943,#02945
  8204.  
  8205. Format of FaxBIOS SCHED_SET_PARAMS command buffer:
  8206. Offset    Size    Description    (Table 02945)
  8207.  00h 12 BYTEs    common data (see #02935)
  8208.  0Ch    WORD    scheduler handle
  8209.  0Eh    DWORD    time to send
  8210.  10h 10 BYTEs    priority token
  8211.  1Ch 80 BYTEs    logo file token
  8212.  6Ch 80 BYTEs    signature file token
  8213.  BCh 80 BYTEs    cover page token
  8214. 10Ch 40 BYTEs    Subject text
  8215. 134h 40 BYTEs    From text
  8216. 15Ch    WORD    user ID
  8217. 15Eh  6 BYTEs    future expansion
  8218. 164h    WORD    structure size
  8219. SeeAlso: #02943,#02944,#02946
  8220.  
  8221. Format of FaxBIOS SCHED_CLOSE command buffer:
  8222. Offset    Size    Description    (Table 02946)
  8223.  00h 12 BYTEs    common data (see #02935)
  8224.  0Ch    WORD    scheduler handle
  8225.  0Eh    WORD    envelope ID generated
  8226.  10h  6 BYTEs    future expansion
  8227.  16h    WORD    structure size
  8228. SeeAlso: #02945
  8229.  
  8230. Format of FaxBIOS SLOG_OPEN, SLOG_CLOSE, RLOG_OPEN, RLOG_CLOSE command buffer:
  8231. Offset    Size    Description    (Table 02947)
  8232.  00h 12 BYTEs    common data (see #02935)
  8233.  0Ch    WORD    log handle
  8234.  0Eh    WORD    number of entries
  8235.  10h  6 BYTEs    future expansion
  8236.  16h    WORD    structure size
  8237.  
  8238. Format of FaxBIOS GRAPH_GET_FILE_TYPE command buffer:
  8239. Offset    Size    Description    (Table 02948)
  8240.  00h 12 BYTEs    common data (see #02935)
  8241.  0Ch 80 BYTEs    filename
  8242.  5Ch    WORD    file type
  8243.         0000h unidentified
  8244.         0001h native file format
  8245.         0002h ASCII
  8246.         0003h FaxBIOS Tiff Class F
  8247.  5Eh    WORD    bitmap of supported capabilities
  8248.  60h  6 BYTEs    future expansion
  8249.  66h    WORD    structure size
  8250. SeeAlso: #02949,#02950
  8251.  
  8252. Format of FaxBIOS GRAPH_CREATE_FILE command buffer:
  8253. Offset    Size    Description    (Table 02949)
  8254.  00h 12 BYTEs    common data (see #02935)
  8255.  0Ch 80 BYTEs    filename
  8256.  5Ch    WORD    graph handle
  8257.  5Eh  6 BYTEs    future expansion
  8258.  64h    WORD    structure size
  8259. SeeAlso: #02948,#02950,#02951
  8260.  
  8261. Format of FaxBIOS GRAPH_CLOSE_FILE, GRAPH_END_PAGE command buffer:
  8262. Offset    Size    Description    (Table 02950)
  8263.  00h 12 BYTEs    common data (see #02935)
  8264.  0Ch    WORD    graph handle
  8265.  0Eh  6 BYTEs    future expansion
  8266.  14h    WORD    structure size
  8267. SeeAlso: #02949,#02951
  8268.  
  8269. Format of FaxBIOS GRAPH_CREATE_PAGE command buffer:
  8270. Offset    Size    Description    (Table 02951)
  8271.  00h 12 BYTEs    common data (see #02935)
  8272.  0Ch    WORD    graph handle
  8273.  0Eh    WORD    resolution
  8274.  10h    WORD    page width
  8275.  12h  6 BYTEs    future expansion
  8276.  18h    WORD    structure size
  8277. SeeAlso: #02949,#02950,#02952
  8278.  
  8279. Format of FaxBIOS GRAPH_WRITE_PAGE command buffer:
  8280. Offset    Size    Description    (Table 02952)
  8281.  00h 12 BYTEs    common data (see #02935)
  8282.  0Ch    WORD    graph handle
  8283.  0Eh    DWORD    pointer to storage for image
  8284.  12h    WORD    band height in lines
  8285.  14h    WORD    width of page image in bytes
  8286.  16h    WORD    facsimile page width constant
  8287.  18h    WORD    width of page image in bits
  8288.  1Ah    WORD    number of bytes actually processed
  8289.  1Ch  6 BYTEs    future expansion
  8290.  22h    WORD    structure size
  8291. SeeAlso: #02951,#02953
  8292.  
  8293. Format of FaxBIOS GRAPH_OPEN_FILE command buffer:
  8294. Offset    Size    Description    (Table 02953)
  8295.  00h 12 BYTEs    common data (see #02935)
  8296.  0Ch 80 BYTEs    filename
  8297.  5Ch    WORD    file type
  8298.  5Eh    WORD    graph handle
  8299.  60h    WORD    number of pages
  8300.  62h  6 BYTEs    future expansion
  8301.  68h    WORD    structure size
  8302. SeeAlso: #02952,#02954
  8303.  
  8304. Format of FaxBIOS GRAPH_GOTO_PAGE command buffer:
  8305. Offset    Size    Description    (Table 02954)
  8306.  00h 12 BYTEs    common data (see #02935)
  8307.  0Ch    WORD    graph handle
  8308.  0Eh    WORD    page number
  8309.  10h    WORD    vertical resolution
  8310.  12h    WORD    page width
  8311.  14h    DWORD    page length
  8312.  18h  6 BYTEs    future expansion
  8313.  1Eh    WORD    structure size
  8314. SeeAlso: #02952,#02953,#02955
  8315.  
  8316. Format of FaxBIOS GRAPH_READ_PAGE command buffer:
  8317. Offset    Size    Description    (Table 02955)
  8318.  00h 12 BYTEs    common data (see #02935)
  8319.  0Ch    WORD    graph handle
  8320.  0Eh    DWORD    pointer to storage for image
  8321.  12h    WORD    band height in lines
  8322.  14h    WORD    width of page image in bytes
  8323.  16h    WORD    facsimile page width constant
  8324.  18h    WORD    width of page image in bits
  8325.  1Ah    WORD    number of bytes actually processed
  8326.  1Ch  6 BYTEs    future expansion
  8327.  22h    WORD    structure size
  8328.  
  8329. Format of FaxBIOS IOCTL_ANSWER_FAX command buffer:
  8330. Offset    Size    Description    (Table 02956)
  8331.  00h 12 BYTEs    common data (see #02935)
  8332.  0Ch    WORD    device number
  8333.  0Eh  6 BYTEs    future expansion
  8334.  14h    WORD    structure size
  8335. SeeAlso: #02957
  8336.  
  8337. Format of FaxBIOS IOCTL_DIAL command buffer:
  8338. Offset    Size    Description    (Table 02957)
  8339.  00h 12 BYTEs    common data (see #02935)
  8340.  0Ch    WORD    device number
  8341.  0Eh  6 BYTEs    country code
  8342.  14h  6 BYTEs    city or area code
  8343.  1Ah 14 BYTEs    local number
  8344.  28h 14 BYTEs    extension
  8345.  36h 14 BYTEs    reserved
  8346.  4Eh  6 BYTEs    future expansion
  8347.  54h    WORD    structure size
  8348. SeeAlso: #02956
  8349. --------N-2F8100-----------------------------
  8350. INT 2F U - Nanosoft, Inc. TurboNET redirector - INSTALLATION CHECK
  8351.     AX = 8100h
  8352. Return: AL = FFh if installed
  8353. Program: TurboNET is a NetBIOS-based file redirector and server; a
  8354.       demonstration version may be downloaded from Nanosoft's BBS
  8355. SeeAlso: AX=8000h"TurboNET"
  8356. --------N-2F8101-----------------------------
  8357. INT 2F U - Nanosoft, Inc. TurboNET redirector - ???
  8358.     AX = 8101h
  8359. Return: AL = ???
  8360.     DL = ???
  8361. --------N-2F8102-----------------------------
  8362. INT 2F U - Nanosoft, Inc. TurboNET redirector - ???
  8363.     AX = 8102h
  8364. Return: AL = ???
  8365.     DL = ???
  8366. --------N-2F8103-----------------------------
  8367. INT 2F U - Nanosoft, Inc. TurboNET redirector - GET MACHINE NAME???
  8368.     AX = 8103h
  8369.     ES:DI -> 17-byte buffer
  8370. Return: buffer filled
  8371. --------N-2F8104-----------------------------
  8372. INT 2F U - Nanosoft, Inc. TurboNET redirector - ???
  8373.     AX = 8104h
  8374.     BL = ???
  8375.     BH = ???
  8376.     CX = ???
  8377.     DX = ???
  8378.     DS:SI -> 16-byte buffer containing ???
  8379. Return: AL = 00h ???
  8380. --------N-2F8105-----------------------------
  8381. INT 2F U - Nanosoft, Inc. TurboNET redirector - ???
  8382.     AX = 8105h
  8383.     CX = ??? (don't change current value if 0000h)
  8384.     DX = ??? (don't change current value if 0000h)
  8385. Return: AL = 00h successful
  8386. --------s-2F8200-----------------------------
  8387. INT 2F - RESPLAY - SAMPLE/PLAYBACK
  8388.     AX = 8200h
  8389.     DX:DI -> start of sample space
  8390.     CX:BX = length in bytes
  8391. Return: AX = status (see #02958)
  8392. Program: RESPLAY is a freeware sound sampling/playback utility by Mark J. Cox
  8393. SeeAlso: AX=8201h"RESPLAY",AX=8210h
  8394.  
  8395. (Table 02958)
  8396. Values for RESPLAY status:
  8397.  1000h    successful
  8398.  2000h    not initialized (see AX=8210h)
  8399.  other    RESPLAY not installed
  8400. --------G-2F8200-----------------------------
  8401. INT 2F U - Nanosoft, Inc. CAPDOS - INSTALLATION CHECK
  8402.     AX = 8200h
  8403. Return: AL = FFh if installed
  8404. Program: CAPDOS is a TSR by Nanosoft, Inc. which allows INT 21h calls to be
  8405.       captured and recorded for later analysis
  8406. SeeAlso: AX=8100h,AX=8201h"CAPDOS",AX=8202h"CAPDOS",AX=8203h"CAPDOS"
  8407. SeeAlso: AX=8204h"CAPDOS"
  8408. --------s-2F8201-----------------------------
  8409. INT 2F - RESPLAY - INSTALLATION CHECK
  8410.     AX = 8201h
  8411. Return: AX = 7746h if installed
  8412. SeeAlso: AX=8202h"RESPLAY",AX=8210h
  8413. --------G-2F8201-----------------------------
  8414. INT 2F - Nanosoft, Inc. CAPDOS - CLEAR QUEUE
  8415.     AX = 8201h
  8416. Note:    resets queue of captured INT 21 calls
  8417. SeeAlso: AX=8200h"CAPDOS"
  8418. --------s-2F8202-----------------------------
  8419. INT 2F - RESPLAY - UNINSTALL
  8420.     AX = 8202h
  8421. Return: AX = status
  8422.         1000h successful
  8423. SeeAlso: AX=8201h"RESPLAY",AX=8210h"RESPLAY"
  8424. --------G-2F8202-----------------------------
  8425. INT 2F - Nanosoft, Inc. CAPDOS - START COLLECTION
  8426.     AX = 8202h
  8427. SeeAlso: AX=8200h"CAPDOS",AX=8203h"CAPDOS"
  8428. --------G-2F8203-----------------------------
  8429. INT 2F - Nanosoft, Inc. CAPDOS - STOP COLLECTION
  8430.     AX = 8203h
  8431. SeeAlso: AX=8200h"CAPDOS",AX=8202h"CAPDOS",AX=8204h"CAPDOS"
  8432. --------G-2F8204-----------------------------
  8433. INT 2F - Nanosoft, Inc. CAPDOS - GET QUEUE PARAMETERS
  8434.     AX = 8204h
  8435. Return: AH = flag: queue wrapped if nonzero
  8436.     BX = index of current start of queue
  8437.     CX = size of queue in entries
  8438. SeeAlso: AX=8200h"CAPDOS",AX=8202h"CAPDOS",AX=8205h"CAPDOS"
  8439. --------G-2F8205-----------------------------
  8440. INT 2F - Nanosoft, Inc. CAPDOS - GET QUEUE ITEM
  8441.     AX = 8205h
  8442.     BX = queue item number
  8443. Return: AX,BX,CX,DX,SI,DI,DS,ES as on entry to captured DOS call
  8444. SeeAlso: AX=8200h"CAPDOS",AX=8204h"CAPDOS"
  8445. --------s-2F8210-----------------------------
  8446. INT 2F - RESPLAY - INITIALIZE
  8447.     AX = 8210h
  8448.     BL = sound device number (see #02959)
  8449.     BH = sample rate in multiples of 250 Hz (14h to A0h)
  8450.     CL = direction
  8451.         00h playback
  8452.         01h sample
  8453. Return: AX = status (see #02958)
  8454. SeeAlso: AX=8200h"RESPLAY",AX=8220h"MODRES"
  8455.  
  8456. (Table 02959)
  8457. Values for RESPLAY sound device:
  8458.  00h    printer port LPT1
  8459.  01h    printer port LPT2
  8460.  02h    prototype board at I/O address 0300h
  8461.  03h    printer port (alternative LPT1)
  8462.  04h    internal speaker
  8463. --------s-2F8220-----------------------------
  8464. INT 2F - MODRES - PLAY MODULE
  8465.     AX = 8220h
  8466.     DX:CX -> MODPARM structure (see #02960)
  8467. Return: AX = status
  8468.         5722h succesful
  8469.         2000h parameters out of range
  8470.         other MODRES not installed
  8471. SeeAlso: AX=8221h,AX=8223h,AX=8225h,AX=8227h,AX=8200h"RESPLAY"
  8472.  
  8473. Format of MODPARM Structure:
  8474. Offset    Size    Description    (Table 02960)
  8475.  00h    WORD    signature 504Dh ("MP" = Modparm)
  8476.  02h    BYTE    output device (see #02962 at INT 2F/AX=8221h)
  8477.  03h    WORD    segment of start of main module (pattern) data
  8478.  05h 31    WORDs    segment of start of sample numbers 1-31
  8479.  43h    BYTE    pattern at which to start playing (00h to 7Fh)
  8480.  44h    BYTE    function
  8481.         00h play from pattern [offset 43h] until end of the song
  8482.         01h play indicated pattern [offset 43h] only
  8483.  45h    BYTE    Machine speed
  8484.         00h 10-12Mhz
  8485.         01h 12-25Mhz (default)
  8486.         02h 25Mhz+
  8487.         03h mix speed 10kHz (fast 8Mhz machines)
  8488.         04h mix speed 12kHz (10Mhz machines)
  8489.         05h mix speed 13kHz
  8490.         06h mix speed 8kHz (test for 8Mhz machines)
  8491.  46h    BYTE    allow >64k sample playing
  8492.         80h MOD has samples >64k in it
  8493.         else all samples in MOD are <64k
  8494. Notes:    Main module data and all samples must start on segment boundaries.
  8495.     In version 2.00 (ONLY) this function carries on playing (works in
  8496.       the background)
  8497. SeeAlso: #02961
  8498. --------s-2F8221-----------------------------
  8499. INT 2F - MODRES - INSTALLATION CHECK
  8500.     AX = 8221h
  8501. Return: AX = status
  8502.         5722h successful
  8503.         other MODRES not installed
  8504.     BX = BCD version number (BH = major, BL = minor)
  8505.     DX:CX -> Output Device structure (read-only) (see #02961)
  8506. SeeAlso: AX=8220h,AX=8222h,AX=8225h,AX=8227h
  8507.  
  8508. Format of Output Device structure [array]:
  8509. Offset    Size    Description    (Table 02961)
  8510.  00h 20 BYTEs    ASCIZ name of the output device
  8511.         (end of list if first char is FFh)
  8512.  14h    WORD    apparently always FFFFh
  8513.  16h    WORD    0000h if output device not available
  8514.         else first I/O port for the output device
  8515.  18h    WORD    second I/O port for the output device (for example
  8516.           if it is stereo)
  8517.         000oh if only one port used or device is not available
  8518.  1Ah  7 BYTEs    ???
  8519. SeeAlso: #02960,#02962
  8520.  
  8521. (Table 02962)
  8522. Values for MODRES v1.52 output device index:
  8523.  00h    PC speaker
  8524.  01h    D/A Converter on LPT1
  8525.  02h    D/A Converter on LPT2
  8526.  03h    D/A Converter on LPT3
  8527.  04h    D/A Converter on LPT4
  8528.  05h    D/A Converter on LPT1&LPT2 (stereo)
  8529.  06h    D/A Converter on LPT1&LPT2 (mono)
  8530.  07h    Sound Blaster (port 02x0h)
  8531.  08h    User Defined D/A (mono)
  8532.  09h    User Defined D/A (stereo)
  8533.  0Ah    Stereo-on-1
  8534.  0Bh    Disney SS su LPT1
  8535.  0Ch    Disney SS su LPT2
  8536.  0Dh    Disney SS su LPT3
  8537.  0Eh    Disney SS su LPT4
  8538. Note:    this list may vary between versions of MODRES
  8539. --------s-2F8222-----------------------------
  8540. INT 2F - MODRES - UNINSTALL
  8541.     AX = 8222h
  8542. Return: AX = code segment of the program
  8543. Note:    this function does not release the TSRs memory; the caller must do so
  8544. SeeAlso: AX=8220h,AX=8221h,AX=8223h
  8545. --------s-2F8223-----------------------------
  8546. INT 2F - MODRES - PLAY SAMPLE
  8547.     AX = 8223h
  8548.     DX:CX -> SAMPARM structure (see #02963)
  8549. Return: AX = status
  8550.         5722h succesful
  8551.         2000h parameters out of range
  8552.         other MODRES not installed
  8553. SeeAlso: AX=8221h,AX=8224h,AX=8225h,AX=8226h
  8554.  
  8555. Format of SAMPARM Structure:
  8556. Offset    Size    Description    (Table 02963)
  8557.  00h    WORD    signature 5053h ("SP" = SAMPARM)
  8558.  02h    WORD    segment of start of sample to play
  8559.  04h    WORD    length of sample (IN WORD)
  8560.  06h    BYTE    output device (see #02962 at INT 2F/AX=8221h)
  8561.  07h    WORD    pitch to play (see #02964)
  8562.  09h    BYTE    volume (from 00h to 40h)
  8563.  0Ah    WORD    loop start
  8564.  0Ch    WORD    loop length
  8565.  0Eh    BYTE    machine speed (see INT 2F/AX=8220h)
  8566. SeeAlso: #02960
  8567.  
  8568. (Table 02964)
  8569. Values for Pitch to play::
  8570.  C 0 is    06B0h
  8571.  C#0 is    06B0h / 2^(1/12)
  8572.  D 0 is    (06B0h / 2^(1/12)) / 2^(1/12)
  8573.  ...
  8574. Note:    C 1 is    06B0h / 2
  8575.     C 2 is    06B0h / 4
  8576.     etc.
  8577. SeeAlso: #02963
  8578. --------s-2F8224-----------------------------
  8579. INT 2F - MODRES - ???
  8580.     AX = 8224h
  8581.     DX:CX -> ???
  8582. Return: ???
  8583. SeeAlso: AX=8221h,AX=8223h,AX=8224h
  8584. --------s-2F8225-----------------------------
  8585. INT 2F - MODRES v2.00+ - GET LOCATION IN MOD
  8586.     AX = 8225h
  8587. Return: AL = status
  8588.        00h playing
  8589.        01h reached end or stopped
  8590.     AH = speed of MOD
  8591.     BX = position within pattern 0000h-0400h
  8592.     CL = position within the song (track number)
  8593. SeeAlso: AX=8220h,AX=8221h,AX=8223h,AX=8226h
  8594. --------s-2F8226-----------------------------
  8595. INT 2F - MODRES v2.00+ - STOP PLAYING
  8596.     AX = 8226h
  8597. Return: AX = status
  8598.         5722h succesful
  8599.         other MODRES not installed
  8600. Desc:    stops playing the MOD file before performing critical operations such
  8601.       as disk accesses
  8602. SeeAlso: AX=8220h,AX=8221h,AX=8223h,AX=8225h,AX=8227h
  8603. --------s-2F8227-----------------------------
  8604. INT 2F - MODRES - CONFIGURE
  8605.     AX = 8227h
  8606.     BX = function
  8607.         0001h set default playing speed (06h)
  8608.         0002h select output device
  8609.         CL = output device (see #02962 at INT 2F/AX=8221h)
  8610. Return: AX = status
  8611.         5722h succesful
  8612.         2000h parameters out of range
  8613.         other MODRES not installed
  8614. Note:    function 0001h should be called every time a new module is loaded
  8615. SeeAlso: AX=8220h,AX=8221h,AX=8222h,AX=8223h
  8616. ----------2F86-------------------------------
  8617. INT 2F U - ???
  8618.     AH = 86h
  8619.     AL = function (at least 06h and 07h)
  8620.     ???
  8621. Return: ???
  8622. Note:    called by Codeview for Windows
  8623. SeeAlso: AH=44h
  8624. --------U-2F8900-----------------------------
  8625. INT 2F - WHOA!.COM - INSTALLATION CHECK
  8626.     AX = 8900h
  8627. Return: AL = state
  8628.         00h not installed
  8629.         FFh installed
  8630. Program: WHOA!.COM is a system slow-down utility by Brad D Crandall
  8631. SeeAlso: AX=8901h,AX=8902h
  8632. --------U-2F8901-----------------------------
  8633. INT 2F - WHOA!.COM - UNINSTALL
  8634.     AX = 8901h
  8635. Return: AL = status
  8636.         FDh successful
  8637.         FEh error
  8638. SeeAlso: AX=8900h
  8639. --------U-2F8902-----------------------------
  8640. INT 2F - WHOA!.COM - SET DELAY COUNT
  8641.     AX = 8902h
  8642.     BX = delay count (larger values slow system down more)
  8643. Return: AL = status
  8644.         FDh successful
  8645.         FEh error
  8646. Program: WHOA!.COM is a system slow-down utility by Brad D Crandall
  8647. SeeAlso: AX=8900h
  8648. --------U-2F9000-----------------------------
  8649. INT 2F U - RAID - INSTALLATION CHECK
  8650.     AX = 9000h
  8651. Return: AL = FFh if installed
  8652. Program: RAID (Resident AID) is a TSR utility program by Ross Neilson
  8653.       Wentworth that resides mostly in EMS
  8654. --------U-2F9001-----------------------------
  8655. INT 2F U - RAID - GET ???
  8656.     AX = 9001h
  8657. Return: DX:AX -> ???
  8658. SeeAlso: AX=9000h
  8659. --------U-2F9002-----------------------------
  8660. INT 2F U - RAID - GET RESIDENT SEGMENT
  8661.     AX = 9002h
  8662. Return: AX = segment of resident (conventional memory) portion
  8663. SeeAlso: AX=9000h
  8664. --------U-2F9003-----------------------------
  8665. INT 2F U - RAID - UNINSTALL
  8666.     AX = 9003h
  8667. Return: ???
  8668. SeeAlso: AX=9000h
  8669. --------U-2F9004-----------------------------
  8670. INT 2F U - RAID - GET ???
  8671.     AX = 9004h
  8672. Return: AX = first available paragraph past end of resident portion???
  8673.     CX destroyed
  8674. SeeAlso: AX=9000h
  8675. --------e-2F92-------------------------------
  8676. INT 2F - Network Courier E-Mail - API
  8677.     AH = 92h
  8678.     AL = function
  8679.         00h installation check
  8680.         01h uninstall
  8681.         02h pop down MICRO.EXE notification window
  8682.         03h ???
  8683.         04h ???
  8684.         05h ???
  8685. Return: ???
  8686. Program: The Network Courier is an electronic mail package by Consumers
  8687.       Software of Vancouver, BC which was bought by Microsoft in 1991 and
  8688.       renamed Microsoft Mail v3.0.
  8689. SeeAlso: AX=9400h,AX=9401h,AX=9402h,AH=9Ch
  8690. Index:    installation check;Network Courier E-Mail
  8691. Index:    uninstall;Network Courier E-Mail
  8692. --------R-2F9200-----------------------------
  8693. INT 2F U - PC Tools v8.0 DRIVEMAP - BUG
  8694.     AX = 9200h
  8695. Program: DRIVEMAP is a redirector which allows drives on computers connected
  8696.       over the parallel or serial ports to appear as local drives
  8697. BUG:    jumps to data because jump table entry is 0000h
  8698. Note:    DRIVEMAP returns AX=FFFFh if not a valid function number in AL
  8699. --------R-2F9201-----------------------------
  8700. INT 2F U - PC Tools v8.0 DRIVEMAP - CHECK IF MAPPED DRIVE
  8701.     AX = 9201h
  8702.     DL = drive number (01h = A:, etc.)
  8703. Return: AL = 92h if mapped drive
  8704.     AH may be destroyed (v8.0 DRIVEMAP returns AX=0000h if not mapped)
  8705. SeeAlso: AX=9204h,AX=920Bh
  8706. --------R-2F9202-----------------------------
  8707. INT 2F U - PC Tools v8.0 DRIVEMAP - UNINSTALL
  8708.     AX = 9202h
  8709.     BX = caller's CS
  8710. Return: AX = status
  8711.         0000h failed
  8712.         nonzero successful
  8713. SeeAlso: AX=9204h
  8714. --------R-2F9203-----------------------------
  8715. INT 2F U - PC Tools v8.0 DRIVEMAP - GET VERSION
  8716.     AX = 9203h
  8717. Return: AH = major version
  8718.     AL = minor version
  8719.     CX = segment of resident code
  8720. Note:    the DRIVEMAP included with PC Tools v8.0 is version 1.00
  8721. SeeAlso: AX=9204h,INT 16/AX=FF70h
  8722. --------R-2F9204-----------------------------
  8723. INT 2F U - PC Tools v8.0 DRIVEMAP - INSTALLATION CHECK
  8724.     AX = 9204h
  8725. Return: AX = 9200h if installed
  8726.        BL = ???
  8727.        CX = segment of resident code
  8728. Program: DRIVEMAP is a redirector which allows drives on computers connected
  8729.       over the parallel or serial ports to appear as local drives
  8730. SeeAlso: AX=9201h,AX=9202h,AX=9203h
  8731. --------R-2F9205-----------------------------
  8732. INT 2F U - PC Tools v8.0 DRIVEMAP - SET ???
  8733.     AX = 9205h
  8734.     BX = ??? to set
  8735. Return: CX = new value of ???
  8736. --------R-2F9206-----------------------------
  8737. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8738.     AX = 9206h
  8739.     ???
  8740. Return: ???
  8741. --------R-2F9207-----------------------------
  8742. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  8743.     AX = 9207h
  8744.     ???
  8745. Return: AX = ???
  8746. --------R-2F9208-----------------------------
  8747. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8748.     AX = 9208h
  8749.     ???
  8750. Return: ???
  8751. --------R-2F9209-----------------------------
  8752. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8753.     AX = 9209h
  8754.     ???
  8755. Return: AX = ???
  8756.     BX = ???
  8757.     CX = ???
  8758.     DX = ???
  8759. --------R-2F920A-----------------------------
  8760. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8761.     AX = 920Ah
  8762.     BX = ???
  8763. Return: AX = ??? or FFFBh on error
  8764. --------R-2F920B-----------------------------
  8765. INT 2F U - PC Tools v8.0 DRIVEMAP - SET DRIVE MAPPING
  8766.     AX = 920Bh
  8767.     BL = drive letter (41h ['A'] = A:, etc)
  8768.     CX = ??? (0000h removes mapping)
  8769. Return: AX = ??? or FFF8h on error
  8770. SeeAlso: AX=9201h,AX=920Dh
  8771. --------R-2F920C-----------------------------
  8772. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8773.     AX = 920Ch
  8774.     ???
  8775. Return: AX = ??? (0002h)
  8776.     CX = ??? (0000h)
  8777. --------R-2F920D-----------------------------
  8778. INT 2F U - PC Tools v8.0 DRIVEMAP - GET DRIVE TYPE
  8779.     AX = 920Dh
  8780.     BL = drive letter (41h ['A'] = A:, etc)
  8781. Return: AX = type flags
  8782.         bit 0: ???
  8783.         bit 1: available
  8784.         bit 5: local
  8785.     BX = ???
  8786.     CX = segment of resident code (apparently an unintended side effect)
  8787. Program: DRIVEMAP is a redirector which allows drives on computers connected
  8788.       over the parallel or serial ports to appear as local drives
  8789. SeeAlso: AX=9218h,INT 16/AX=FF70h
  8790. --------R-2F920E-----------------------------
  8791. INT 2F U - PC Tools v8.0 DRIVEMAP - SET LPT MAPPING
  8792.     AX = 920Eh
  8793.     BX = port number (0-2)
  8794.     CX = ??? (0000h to unmap)
  8795. Return: ???
  8796. --------R-2F920F-----------------------------
  8797. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  8798.     AX = 920Fh
  8799.     ES:DI -> 3-byte buffer for ???
  8800. Return: CX = 0000h
  8801.     ES:DI buffer filled
  8802. --------R-2F9210-----------------------------
  8803. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8804.     AX = 9210h
  8805.     ???
  8806. Return: ???
  8807. --------R-2F9211-----------------------------
  8808. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  8809.     AX = 9211h
  8810.     ES:DI -> 8-word buffer for ???
  8811. Return: CX = 0000h
  8812.     ES:DI buffer filled
  8813. --------R-2F9212-----------------------------
  8814. INT 2F U - PC Tools v8.0 DRIVEMAP - CRITICAL SECTION???
  8815.     AX = 9212h
  8816.     BX = phase
  8817.         0000h leave critical section???
  8818.         nonzero enter critical section???
  8819. --------R-2F9213-----------------------------
  8820. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8821.     AX = 9213h
  8822.     BX = function number (0000h-000Bh)
  8823.     ???
  8824. Return: ???
  8825. --------R-2F9214-----------------------------
  8826. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  8827.     AX = 9214h
  8828.     ES:DI -> 6-word buffer for ???
  8829. Return: CX = 0000h
  8830.     AX = ???
  8831.     ES:DI buffer filled
  8832. --------R-2F9215-----------------------------
  8833. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  8834.     AX = 9215h
  8835.     ES:DI -> 100-word buffer for ???
  8836. Return: CX = 0000h
  8837.     ES:DI buffer filled
  8838. --------R-2F9216-----------------------------
  8839. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8840.     AX = 9216h
  8841.     ES:DI -> ???
  8842. Return: ???
  8843. --------R-2F9217-----------------------------
  8844. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8845.     AX = 9217h
  8846.     DS:SI -> 25-word buffer containing ???
  8847. Return: ???
  8848. --------R-2F9218-----------------------------
  8849. INT 2F U - PC Tools v8.0 DRIVEMAP - GET LPT TYPE???
  8850.     AX = 9218h
  8851.     BX = port number???
  8852. Return: AX = ???
  8853.     BX = ??? (0000h)
  8854.     CX = ??? (0000h)
  8855. Program: DRIVEMAP is a redirector which allows drives on computers connected
  8856.       over the parallel or serial ports to appear as local drives
  8857. --------R-2F9219-----------------------------
  8858. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8859.     AX = 9219h
  8860.     ???
  8861. Return: ???
  8862. --------R-2F921A-----------------------------
  8863. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8864.     AX = 921Ah
  8865.     ???
  8866. Return: AH = ???
  8867.     AL = ???
  8868.     BX = ???
  8869. --------R-2F921B-----------------------------
  8870. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8871.     AX = 921Bh
  8872.     ???
  8873. Return: AX = ???
  8874.     CX = segment of resident code (apparently an unintended side effect)
  8875. --------R-2F921C-----------------------------
  8876. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8877.     AX = 921Ch
  8878.     ???
  8879. Return: ???
  8880. --------R-2F921D-----------------------------
  8881. INT 2F U - PC Tools v8.0 DRIVEMAP - GET ???
  8882.     AX = 921Dh
  8883. Return: AX = ???
  8884. --------R-2F921E-----------------------------
  8885. INT 2F U - PC Tools v8.0 DRIVEMAP - ???
  8886.     AX = 921Eh
  8887.     ???
  8888. Return: ???
  8889. Program: DRIVEMAP is a redirector which allows drives on computers connected
  8890.       over the parallel or serial ports to appear as local drives
  8891. Note:    this function sets two variables to 24h each
  8892. SeeAlso: INT 16/AX=FF70h
  8893. --------V-2F93-------------------------------
  8894. INT 2F - InnerMission v1.7+ - INSTALLATION CHECK
  8895.     AH = 93h
  8896.     BX = CX = AX
  8897. Return: AL = state
  8898.         FFh if installed and BX=CX=AX on entry
  8899.         BX = segment of resident code
  8900.         01h if installed but BX or CX differ from AX (multiplex number not
  8901.           available)
  8902. Program: InnerMission is a shareware graphical screen blanker by Kevin Stokes
  8903. SeeAlso: INT 14/AX=AA01h,INT 2F/AX=6400h
  8904. Index:    screen saver;InnerMission
  8905. --------e-2F9400-----------------------------
  8906. INT 2F - MICRO.EXE - INSTALLATION CHECK
  8907.     AX = 9400h
  8908. Return: AL = 07h or 08h if installed
  8909. Program: MICRO.EXE is a TSR of the Microsoft Mail part of Workgroup Connection
  8910. SeeAlso: AH=92h"Network Courier",AX=9401h,AX=9402h,AX=9403h,AX=9404h
  8911. SeeAlso: INT 21/AH=3Fh"WORKGRP.SYS"
  8912. --------e-2F9401-----------------------------
  8913. INT 2F - MICRO.EXE - SET ??? FLAG
  8914.     AX = 9401h
  8915. SeeAlso: AX=9400h,AX=9403h
  8916. --------e-2F9402-----------------------------
  8917. INT 2F - MICRO.EXE - ???
  8918.     AX = 9402h
  8919.     ???
  8920. Return: ???
  8921. SeeAlso: AX=9400h
  8922. --------e-2F9403-----------------------------
  8923. INT 2F - MICRO.EXE - SET ??? FLAG
  8924.     AX = 9403h
  8925. SeeAlso: AX=9400h,AX=9404h
  8926. --------e-2F9404-----------------------------
  8927. INT 2F - MICRO.EXE - CLEAR ??? FLAG
  8928.     AX = 9404h
  8929.     ES:DI -> name of executable from which MICRO.EXE was started
  8930. Note:    if the specified name is identical to the name of the program file
  8931.       from which MICRO was started, the ??? flag is cleared; otherwise,
  8932.       it is left unchanged
  8933. SeeAlso: AX=9400h,AX=9403h
  8934. --------V-2F96C7-----------------------------
  8935. INT 2F U - STRETCH - INSTALLATION CHECK
  8936.     AX = 96C7h
  8937. Return: AX = AAAAh if installed
  8938. Program: stretch.exe is a TSR for Toshiba Laptops with WD90C24 video chip
  8939.       to avoid blank screen areas in VGA text modes by increasing
  8940.       inter-line spacing
  8941. ----------2F97-------------------------------
  8942. INT 2F U - Micro Focus COBOL v3.1.31 internal - ???
  8943.     AH = 97h
  8944.     AL = function
  8945.         00h installation check
  8946.         Return: AL = FFh if installed
  8947.         08h get ???
  8948.         Return: AL = ???
  8949.             BX = ???
  8950.             DX = ???
  8951.             AH destroyed
  8952.         20h get ???
  8953.         Return: AX:BX = far entry point of ???
  8954.             CX = segment of ???
  8955.         80h ???
  8956.         Return: ???
  8957. Notes:    Micro Focus COBOL compiler v3.1.31 and companion programs supply
  8958.       these functions for internal use; these programs call the
  8959.       installation check at startup (before installing the INT 2F
  8960.       handler) and crash the system if a not authorized program answers
  8961.       with AL=FFh
  8962.     the handler checks AL only if an internal flag is 1, otherwise ???
  8963. SeeAlso: AH=98h"COBOL",AH=99h"COBOL",AH=9Ah"COBOL"
  8964. ----------2F98-------------------------------
  8965. INT 2F U - Micro Focus COBOL v3.1.31 internal - ???
  8966.     AH = 98h
  8967.     AL = function
  8968.         00h installation check
  8969.         Return: AL = FFh if installed
  8970.         10h get ???
  8971.         Return: AX = ???
  8972.         18h get segment of ???
  8973.         Return: AX = segment of ???
  8974.         19h get pointer to ???
  8975.         Return: AX:BX -> ???
  8976. Notes:    Micro Focus COBOL compiler v3.1.31 and companion programs supply
  8977.       these functions for internal use; these programs call the
  8978.       installation check at startup (before installing the INT 2F
  8979.       handler) and crash the system if a not authorized program answers
  8980.       with AL=FFh
  8981.     the handler checks AL only if an internal flag is 0, otherwise ???
  8982. SeeAlso: AH=97h"COBOL",AH=99h"COBOL",AH=9Ah"COBOL"
  8983. --------V-2F9800-----------------------------
  8984. INT 2F U - S3RMDRV.SYS - INSTALLATION CHECK / VERSION CHECK
  8985.     AX = 9800h
  8986.     BX = function
  8987.         0000h installation check
  8988.         Return: AX = 524Dh ('RM') if installed
  8989.         0001h get driver version
  8990.         Return: AX = driver version (AH=major, AL=BCD minor)
  8991. Program: S3RMDRV.SYS provides support for the S3 MPEG driver FMPDRV
  8992. SeeAlso: AX=9803h
  8993. --------V-2F9803-----------------------------
  8994. INT 2F U - S3RMDRV.SYS - COPY ??? INTO USER BUFFER
  8995.     AX = 9803h
  8996.     DX:BX -> 116-byte buffer for ASCIZ ???
  8997. Return: AX = 0000h
  8998.     DX:BX buffer filled with string stored in driver from its parameter
  8999.       list when it was loaded
  9000. Note:    the examined version of the driver returns CF set for any AL other
  9001.       than 00h or 03h
  9002. SeeAlso: AX=9800h
  9003. ----------2F99-------------------------------
  9004. INT 2F U - Micro Focus COBOL v3.1.31 internal - ???
  9005.     AH = 99h
  9006.     ???
  9007. Return: ???
  9008. Note:    used internally by Micro Focus COBOL compiler v3.1.31 and companion
  9009.       programs
  9010. SeeAlso: AH=97h"COBOL",AH=98h"COBOL",AH=9Ah"COBOL"
  9011. --------l-2F9900-----------------------------
  9012. INT 2F U - DOS Navigator II - INSTALLATION CHECK
  9013.     AX = 9900h
  9014. Return: BX = 444Eh ('DN') if installed
  9015.         AX = number of DOS Navigator executions
  9016.         CL = child process exit code
  9017.         DX = version number (see #02965)
  9018. Notes:    old versions of DOS Navigator II always returned AH=1, while newer
  9019.       ones return AH=0 and store AL in the DN.FLG file
  9020. Program: DOS Navigator is a multi-window shell for MS-DOS by RIT S.R.L.
  9021.       DOS Navigator(TM) is a registered trademark of RIT S.R.L.
  9022. SeeAlso: AX=9901h,AX=9902h,AX=9903h,AX=9904h,AX=9905h,AX=9906h
  9023.  
  9024. (Table 02965)
  9025. Values for DOS Navigator II version code:
  9026.  2100h    version 1.35
  9027.  2138h    version 1.38
  9028.  2141h    version 1.41
  9029.  2150h    version 1.50
  9030. --------l-2F9901-----------------------------
  9031. INT 2F U - DOS Navigator II - RETURN POINTER TO COMMAND LINE
  9032.     AX = 9901h
  9033. Return: ES:BX -> command line (terminated with 0Dh)
  9034.     AX = ES
  9035. SeeAlso: AX=9900h,AX=9902h,AX=9903h
  9036. --------l-2F9902-----------------------------
  9037. INT 2F U - DOS Navigator II - SET 'TRUE' EXIT CODE OF DN.PRG
  9038.     AX = 9902h
  9039.     CL = exit code
  9040. Return: AX destroyed
  9041. SeeAlso: AX=9900h,AX=9901h,AX=9903h
  9042. --------l-2F9903-----------------------------
  9043. INT 2F U - DOS Navigator II - SPECIFY HOW TO EXECUTE COMMANDS
  9044.     AX = 9903h
  9045.     CL = 1 to use INT 2E
  9046.     CL <> 1 to use INT 21/AH=4Bh
  9047. SeeAlso: AX=9900h,AX=9901h,AX=9902h
  9048. --------l-2F9904-----------------------------
  9049. INT 2F U - DOS Navigator II v1.49 - SET ???
  9050.     AX = 9904h
  9051.     CX:DX = new value for ???
  9052. SeeAlso: AX=9900h,AX=9905h,AX=9906h
  9053. --------l-2F9905-----------------------------
  9054. INT 2F U - DOS Navigator II v1.49 - GET ???
  9055.     AX = 9905h
  9056. Return: CX:DX = current value of ??? (set by AX=9904h)
  9057. SeeAlso: AX=9900h,AX=9904h,AX=9906h
  9058. --------l-2F9906-----------------------------
  9059. INT 2F U - DOS Navigator II v1.49 - GET ???
  9060.     AX = 9906h
  9061.     DX = new value for ??? (bit 15 must be set, otherwise not changed)
  9062. Return: CX = previous value for ???
  9063. SeeAlso: AX=9900h,AX=9904h,AX=9905h
  9064. ----------2F9A-------------------------------
  9065. INT 2F U - Micro Focus COBOL v3.1.31 internal - ???
  9066.     AH = 9Ah
  9067.     ???
  9068. Return: ???
  9069. Note:    used internally by Micro Focus COBOL compiler v3.1.31 and companion
  9070.       programs
  9071. SeeAlso: AH=97h"COBOL",AH=98h"COBOL",AH=99h"COBOL"
  9072. --------e-2F9C-------------------------------
  9073. INT 2F - Network Courier E-Mail OPERATOR.EXE - API
  9074.     AH = 9Ch
  9075.     AL = subfunction
  9076.         01h uninstall
  9077. Return: ???
  9078. Program: The Network Courier is an electronic mail package by Consumers
  9079.       Software of Vancouver, BC which was bought by Microsoft in 1991 and
  9080.       renamed Microsoft Mail v3.0.
  9081. SeeAlso: AH=92h
  9082. Index:    uninstall;Network Courier E-Mail OPERATOR.EXE
  9083. --------G-2F9E00-----------------------------
  9084. INT 2F U - INTMON v2.1 - INSTALLATION CHECK
  9085.     AX = 9E00h
  9086. Return: AX = FFFFh if installed
  9087.         BX = segment of resident code
  9088. Program: INTMON is a shareware interactive interrupt monitoring TSR for 386
  9089.       and higher machines by Celso Minnitti, Jr.
  9090. SeeAlso: AX=9E01h,AX=9E02h,AX=9E03h,AX=9F00h
  9091. --------G-2F9E01-----------------------------
  9092. INT 2F U - INTMON v2.1 - RESET
  9093.     AX = 9E01h
  9094. Return: ???
  9095. Desc:    this function specifies that INTMON should assume that any interrupts
  9096.       on which it is currently awaiting a return have completed (i.e.
  9097.       interrupts which never return such as INT 20 and INT 27)
  9098. SeeAlso: AX=9E00h,AX=9E03h
  9099. --------G-2F9E02-----------------------------
  9100. INT 2F U - INTMON v2.1 - DISPLAY CPU REGISTERS???
  9101.     AX = 9E02h
  9102. Return: ???
  9103. SeeAlso: AX=9E00h
  9104. --------G-2F9E03-----------------------------
  9105. INT 2F U - INTMON v2.1 - HOOK INTERRUPT???
  9106.     AX = 9E03h
  9107.     BH = interrupt number???
  9108. Return: ???
  9109. Note:    if AL > 03h on entry, INTMON 2.1 returns immediately
  9110. SeeAlso: AX=9E00h,AX=9E01h
  9111. --------G-2F9F00-----------------------------
  9112. INT 2F U - INTCFG v2.1 - INSTALLATION CHECK
  9113.     AX = 9F00h
  9114. Return: AX = FFFFh if installed
  9115. Program: INTCFG is an optionally-resident control program for INTMON by Celso
  9116.       Minnitti, Jr.
  9117. SeeAlso: AX=9E00h,AX=9F01h,AX=9F30h,AX=9F49h
  9118. --------G-2F9F01-----------------------------
  9119. INT 2F U - INTCFG v2.1 - ???
  9120.     AX = 9F01h
  9121.     ???
  9122. Return: ???
  9123. SeeAlso: AX=9F00h
  9124. --------G-2F9F30-----------------------------
  9125. INT 2F U - INTCFG v2.1 - GET ???
  9126.     AX = 9F30h
  9127. Return: AX = ??? (0002h)
  9128. SeeAlso: AX=9F00h
  9129. --------G-2F9F49-----------------------------
  9130. INT 2F U - INTCFG v2.1 - UNINSTALL
  9131.     AX = 9F49h
  9132. Return: AX,DX,DS,ES destroyed
  9133. SeeAlso: AX=9F00h
  9134. --------E-2FA1--BX0081-----------------------
  9135. INT 2F - Ergo DOS extenders - INSTALLATION CHECK
  9136.     AH = A1h
  9137.     BX = 0081h
  9138.     AL = which
  9139.         FEh OS/286,OS/386
  9140.         FFh HummingBoard DOS extender
  9141.     ES:DI -> 16-byte buffer
  9142. Return: if installed, first four bytes of ES:DI buffer are "IABH"
  9143. Note:    since TKERNEL is a licensed version, it is likely that subfunctions
  9144.       BX=0082h and BX=0084h are present and function identically to the
  9145.       AX=FBA1h/BX=008xh calls
  9146. SeeAlso: AX=ED00h,AX=FBA1h/BX=0081h,INT 15/AX=BF02h
  9147. --------m-2FA189-----------------------------
  9148. INT 2F U - Biologic HRAMDEV.SYS - API
  9149.     AX = A189h
  9150.     BX = subfunction
  9151.         0000h set ???
  9152.         0001h remove ???
  9153.         0002h get status ???
  9154.         0003h enable ???
  9155.         0004h disable ???
  9156.         0005h set ??? flag
  9157.         0006h clear ??? flag
  9158.         0007h set ??? flag
  9159.         0008h clear ??? flag
  9160.         0009h set ???
  9161.     ES:DI -> function-specific arguments
  9162.         if func 0000h: 20-byte buffer containing ???
  9163.         if func 0001h: 20-byte buffer for returned ???
  9164.         if func 0002h: 16-byte buffer for returned ???
  9165.         if func 0009h: WORD containing ???
  9166. Return: BX = A189h if installed
  9167.     AH = status
  9168.         00h successful
  9169.         FFh failed or invalid function number
  9170. Program: HRAMDEV.SYS is a part of the shareware package HRAM by Biologic which
  9171.       provides improved high memory access under MS-DOS 5.0
  9172. Note:    functions 00h and 01h use a stack of four entries; function 01h always
  9173.       removes the values stored with the most recent function 00h call
  9174.       which has not yet been matched with a function 01h call.
  9175. --------U-2FA4E0-----------------------------
  9176. INT 2F - Futurus Team - INSTALLATION CHECK
  9177.     AX = A4E0h
  9178. Return: AL = 52h ("R") if installed
  9179.         AH = major version plus 30h ("0")
  9180.         ES:BX -> ??? (INT A4 handler???)
  9181. Note:    older versions of Right Hand Man (from which Team evolved) store the
  9182.       signature "RH" at offset 103h in the INT 2F handler's segment
  9183. SeeAlso: INT A4"Right Hand Man"
  9184. --------U-2FA900-----------------------------
  9185. INT 2F - METZTSR.COM - INSTALLATION CHECK
  9186.     AX = A900h
  9187.     CF set
  9188. Return: CF clear if resident
  9189.         AX = 97FFh
  9190.     CF set if not present
  9191. Notes:    METZTSR.COM prevents METZ applications (such as the MAGIC screen
  9192.       saver) inactivity timeout while running a DOSapp under MS Windows.
  9193.     the default multiplex number is A9h, but may be set to any value from
  9194.       80h to FFh with a commandline switch
  9195. SeeAlso: AX=A901h,AX=A902h
  9196. --------U-2FA901-----------------------------
  9197. INT 2F - METZTSR.COM - GET TIME OF LAST KEYBOARD ACTIVITY
  9198.     AX = A901h
  9199.     CF set
  9200. Return: CF clear if successful
  9201.         AX:DX = BIOS time at which INT 09 was last invoked
  9202.     CF set if not present
  9203. SeeAlso: INT 09,INT 1A/AH=00h
  9204. --------U-2FA902-----------------------------
  9205. INT 2F - METZTSR.COM - SET METZ Ctrl-Alt-Del FLAG
  9206.     AX = A902h
  9207.     BL = new value
  9208.         00h Ctrl-Alt-Del not allowed
  9209.         else Ctrl-Alt-Del allowed (startup default is 01h)
  9210.     CF set
  9211. Return: CF clear if successful
  9212.         AX = 97FFh
  9213.     CF set if not resident
  9214. SeeAlso: AX=A903h
  9215. --------U-2FA903-----------------------------
  9216. INT 2F - METZTSR.COM - GET METZ Ctrl-Alt-Del FLAG
  9217.     AX = A903h
  9218.     CF set
  9219. Return: CF clear if successful
  9220.         AX = 97FFh if Ctrl-Alt-Del allowed
  9221.         AX = 0000h if Ctrl-Alt-Del not allowed
  9222.     CF set if not resident
  9223. SeeAlso: AX=A902h
  9224. --------U-2FAA-------------------------------
  9225. INT 2F - Player's Tool 3.996b+ - UNINSTALL
  9226.     AH = AAh
  9227. Return: AL = status
  9228.         00h unloaded successfully
  9229.         01h unable to unload: in DOS shell
  9230. Program: Player's Tool is a game cheater by Dima Yakunin & Andy Robinson
  9231. SeeAlso: AH=ABh"Player's Tool",AH=ACh"Player's Tool",INT 10/AH=AAh
  9232. --------U-2FAA00-----------------------------
  9233. INT 2F - VIDCLOCK.COM - INSTALLATION CHECK
  9234.     AX = AA00h
  9235. Return: AL = 00h not installed
  9236.          FFh installed
  9237. Program: VIDCLOCK.COM is a memory-resident clock by Thomas G. Hanlin III
  9238. --------U-2FAB-------------------------------
  9239. INT 2F - Player's Tool 3.996b+ - INSTALLATION CHECK
  9240.     AH = ABh
  9241. Return: BH = FFh if installed
  9242.         BL = DOS shell state
  9243.         01h in DOS shell
  9244.         00h not in DOS shell
  9245. SeeAlso: AH=AAh"Player's Tool",AH=ACh"Player's Tool",INT 10/AH=ABh
  9246. --------f-2FAB00-----------------------------
  9247. INT 2F - Btrieve Multi-User - INSTALLATION CHECK
  9248.     AX = AB00h
  9249. Return: AL = 4Dh if installed
  9250. SeeAlso: AX=AB01h,AX=AB02h,INT 7B"Btrieve"
  9251. ----------2FAB00-----------------------------
  9252. INT 2F - SRSoft MODAL PC v2+ - INSTALLATION CHECK / GET VERSION
  9253.     AX = AB00h
  9254. Return: AX = 5253h ('SR' byte-swapped) if installed
  9255.         BX = MODAL PC version (BL = major, BH = minor)
  9256. Program: MODAL PC is an algorithm/real-system simulation package by SR Soft
  9257.       using Petri-nets to describe simulated objects
  9258. SeeAlso: AX=AB01h"MODAL",AX=AB02h"MODAL",AX=AB06h"MODAL"
  9259. --------f-2FAB01-----------------------------
  9260. INT 2F - Btrieve Multi-User - EXECUTE Btrieve OPERATION
  9261.     AX = AB01h
  9262.     BX = process ID
  9263.     DS:DX -> 38-byte parameter record (see #03840 at INT 7B"Btrieve")
  9264. Return: AL = status
  9265.         00h OK
  9266.         other retry after calling INT 7F/AX=0200h
  9267. SeeAlso: AX=AB00h"Btrieve",AX=AB02h"Btrieve",INT 7B"Btrieve",INT 7F/AX=0200h
  9268. ----------2FAB01-----------------------------
  9269. INT 2F - SRSoft MODAL PC v2+ - GET PROCESS RUN PARAMETER
  9270.     AX = AB01h
  9271. Return: AX = 5253h ('SR' byte-swapped) if installed
  9272.     BL = run parameter
  9273.         00h normal process
  9274.         01h run with tracing enabled
  9275.         02h run initialization process (first thread of main task)
  9276. SeeAlso: AX=AB00h"MODAL",AX=AB02h"MODAL"
  9277. --------f-2FAB02-----------------------------
  9278. INT 2F - Btrieve Multi-User - GET NEW PROCESS ID
  9279.     AX = AB02h
  9280. Return: AL = 00h successful
  9281.         BX = process ID
  9282.     AL > 00h failed, retry after calling INT 7F/AX=0200h
  9283. SeeAlso: AX=AB00h,AX=AB01h,INT 7B"Btrieve",INT 7F/AX=0200h
  9284. ----------2FAB02-----------------------------
  9285. INT 2F - SRSoft MODAL PC v2+ - SET PROCESS EXIT CODE
  9286.     AX = AB02h
  9287.     BL = exit code
  9288. Return: AX = 5253h ('SR' byte-swapped) if installed
  9289. SeeAlso: AX=AB00h"MODAL",AX=AB01h"MODAL",AX=AB03h"MODAL"
  9290. ----------2FAB03-----------------------------
  9291. INT 2F - SRSoft MODAL PC v2+ - ALLOCATE COMMON MEMORY
  9292.     AX = AB03h
  9293.     BX = required size of common memory for variables/semaphores in bytes
  9294. Return: AX = 5253h ('SR' byte-swapped) if installed
  9295. SeeAlso: AX=AB00h"MODAL",AX=AB02h"MODAL",AX=AB04h"MODAL"
  9296. ----------2FAB04-----------------------------
  9297. INT 2F - SRSoft MODAL PC v2+ - GET ALL COMMON VARIABLES AND SEMAPHORES
  9298.     AX = AB04h
  9299.     DS:DX -> buffer for common data
  9300. Return: AX = 5253h ('SR' byte-swapped) if installed
  9301.     CF clear if successful
  9302.     CF set on error
  9303. SeeAlso: AX=AB00h"MODAL",AX=AB03h"MODAL",AX=AB05h"MODAL",AX=AB06h,AX=AB07h
  9304. ----------2FAB05-----------------------------
  9305. INT 2F - SRSoft MODAL PC v2+ - SET ALL COMMON VARIABLES AND SEMAPHORES
  9306.     AX = AB05h
  9307.     DS:DX -> buffer containing common data
  9308. Return: AX = 5253h ('SR' byte-swapped) if installed
  9309.     CF clear if successful
  9310.     CF set on error
  9311. SeeAlso: AX=AB00h"MODAL",AX=AB03h"MODAL",AX=AB04h"MODAL",AX=AB06h,AX=AB07h
  9312. ----------2FAB06-----------------------------
  9313. INT 2F - SRSoft MODAL PC v2+ - GET A COMMON VARIABLE OR SEMAPHORE
  9314.     AX = AB06h
  9315.     BX = offset of variable or semaphore in common memory
  9316.     CX = variable/semaphore size in bytes
  9317.     DS:DX -> buffer for variable or semaphore
  9318. Return: AX = 5253h ('SR' byte-swapped) if installed
  9319.     CF clear if successful
  9320.     CF set on error
  9321. SeeAlso: AX=AB00h"MODAL",AX=AB04h,AX=AB05h,AX=AB07h
  9322. ----------2FAB07-----------------------------
  9323. INT 2F - SRSoft MODAL PC v2+ - SET A COMMON VARIABLE OR SEMAPHORE
  9324.     AX = AB07h
  9325.     BX = offset of variable or semaphore in common memory
  9326.     CX = variable/semaphore size in bytes
  9327.     DS:DX -> buffer containing variable or semaphore
  9328. Return: AX = 5253h ('SR' byte-swapped) if installed
  9329.     CF clear if successful
  9330.     CF set on error
  9331. SeeAlso: AX=AB00h"MODAL",AX=AB04h,AX=AB05h,AX=AB06h
  9332. --------U-2FAC-------------------------------
  9333. INT 2F u - Player's Tool 3.996b+ - POP UP
  9334.     AH = ACh
  9335. Return: AX = 1001h
  9336. SeeAlso: AH=AAh"Player's Tool",AH=ABh"Player's Tool"
  9337. --------V-2FAC00-----------------------------
  9338. INT 2F - DOS 4.01+ GRAPHICS.COM - INSTALLATION CHECK
  9339.     AX = AC00h
  9340. Return: AX = FFFFh
  9341.     ES:DI -> ??? (graphics data?) (not documented)
  9342. Note:    this installation check was moved here to avoid the conflict with the
  9343.       CD-ROM extensions that occurred in DOS 4.00
  9344. SeeAlso: AX=1500h"GRAPHICS"
  9345. --------V-2FAC00DI1092-----------------------
  9346. INT 2F - QRIP/TSR - GIVE CPU TO QRIP
  9347.     AX = AC00h
  9348.     DI = 1092h
  9349. Return: nothing
  9350. Program: QRIP/TSR is a shareware TSR by Shane Hathaway implementing the Remote
  9351.       Imaging Protocol (RIP, RIPscrip) used by several BBS systems to
  9352.       provide a graphical user interface
  9353. Desc:    give QRIP some CPU time to update music and flashing timers
  9354. Notes:    if DI <> 1092h on entry, QRIP chains the call
  9355.     this function should be called regularly whenever the terminal program
  9356.       is otherwise idle; the updates are automatically performed on any
  9357.       other QRIP call
  9358. SeeAlso: AX=AC01h,AX=ACF0h
  9359. --------V-2FAC01DI1092-----------------------
  9360. INT 2F - QRIP/TSR - CHANGE INTERNAL FLAGS
  9361.     AX = AC01h
  9362.     DI = 1092h
  9363.     BX = flags to be turned on (see #02966)
  9364.     CX = flags to be turned off (see #02966)
  9365. Return: AX = 9142h if installed
  9366.         DX = DOS-takeover flag (nonzero if QRIP able to take over DOS)
  9367.         ---if DX nonzero---
  9368.         BX = QRIP version number in hex (BH = major, BL = minor)
  9369.         CX = new flags (see #02966)
  9370. Note:    if DI <> 1092h on entry, QRIP chains the call
  9371. SeeAlso: AX=AC00h/DI=1092h,AX=ACF0h
  9372.  
  9373. Bitfields for QRIP internal flags:
  9374. Bit(s)    Description    (Table 02966)
  9375.  0    ANSI emulation enabled (default on)
  9376.  1    RIP emulation enabled (default on)
  9377.  2    graphical commands allowed (default on)
  9378.  3    TTY text allowed (default on)
  9379.  4    disable @ variables (default off in TSR mode)
  9380.  5    wait for key on RIP "end scene" command (default off)
  9381.  6    anti-stripping (default off in TSR mode)
  9382.  7    sound enabled (default on)
  9383.  8    automatic message filter (default off in TSR mode)
  9384.  9    display-only mode (no user prompts)
  9385.  10    TTY text suppression (default off in TSR mode)
  9386.  11-15    reserved
  9387. --------V-2FAC02DI1092-----------------------
  9388. INT 2F - QRIP/TSR - TURN OFF GRAPHICS SCREEN
  9389.     AX = AC02h
  9390.     DI = 1092h
  9391. Return: nothing
  9392. Note:    if DI <> 1092h on entry, QRIP chains the call
  9393. SeeAlso: AX=AC03h,AX=ACF0h
  9394. --------V-2FAC03DI1092-----------------------
  9395. INT 2F - QRIP/TSR - TURN ON GRAPHICS SCREEN
  9396.     AX = AC03h
  9397.     DI = 1092h
  9398. Return: nothing
  9399. Notes:    if DI <> 1092h on entry, QRIP chains the call
  9400.     this function does not restore the contents of the screen (see AX=AC15h)
  9401. SeeAlso: AX=AC02h,AX=AC14h,AX=AC15h
  9402. --------V-2FAC04DI1092-----------------------
  9403. INT 2F - QRIP/TSR - OUTPUT STRING THROUGH QRIP
  9404.     AX = AC04h
  9405.     DI = 1092h
  9406.     DX:BX -> string
  9407.     CX = length of string
  9408. Return: nothing
  9409. Note:    if DI <> 1092h on entry, QRIP chains the call
  9410. SeeAlso: AX=AC05h,AX=AC09h,AX=AC0Ah,AX=ACF0h
  9411. --------V-2FAC05DI1092-----------------------
  9412. INT 2F - QRIP/TSR - OUTPUT NULL-TERMINATED STRING THROUGH QRIP
  9413.     AX = AC05h
  9414.     DI = 1092h
  9415.     DX:BX -> ASCIZ string
  9416. Return: nothing
  9417. Note:    if DI <> 1092h on entry, QRIP chains the call
  9418. SeeAlso: AX=AC04h,AX=AC06h,AX=AC09h,AX=AC0Ah,AX=ACF0h
  9419. --------V-2FAC06DI1092-----------------------
  9420. INT 2F - QRIP/TSR - RECEIVE CHARACTERS FROM QRIP
  9421.     AX = AC06h
  9422.     DI = 1092h
  9423. Return: AX = character to send to BBS (0001h-00FFh) or special code (see #02967)
  9424.     BX = string-waiting flag
  9425.         0001h entire string waiting to be sent to terminal (call AX=AC0Ch)
  9426.     CX = DX = AX
  9427. Note:    if DI <> 1092h on entry, QRIP chains the call
  9428. SeeAlso: AX=AC04h,AX=AC05h,AX=AC0Ch,AX=AC16h,AX=AC18h,AX=AC1Ah
  9429.  
  9430. (Table 02967)
  9431. Values for QRIP special codes:
  9432.  0000h    if none
  9433.  0100h    wait for user keypress (must call AX=AC16h/BL=00h or AX=AC18h)
  9434.  0101h    both/middle mouse button pressed
  9435.  0102h    entering block mode (up/download) (call AX=AC1Ah)
  9436.  0103h    right mouse button pressed
  9437.  0104h    BBS requested status bar on
  9438.  0105h    BBS requested status bar off
  9439.  0106h    BBS requested VT-102 terminal emulation
  9440.     (keypad keys should send VT-102 escape codes)
  9441.  0107h    BBS requested VT-102 mode off
  9442.  0108h    BBS requested doorway mode (raw IBM keyboard ASCII/scan code pairs)
  9443.  0109h    BBS requested doorway mode off
  9444.  010Ah    hotkey mode on
  9445.  010Bh    hotkey mode off
  9446.  010Ch    BBS requested Tab-key button changing on
  9447.  010Dh    BBS requested Tab-key mode off
  9448.  010Eh    XOFF (use flow control to stop incoming characters)
  9449.  010Fh    XON (use flow control to resume incoming characters)
  9450.  0110h-0119h BBS requested application (0-9) be run
  9451.     application 0 should be a standard text editor
  9452.  01FFh    send ASCII 00h to BBS
  9453. Note:    for special codes 0104h to 010Dh, the terminal program should report
  9454.       any mode changes it make in response by calling AX=AC16h
  9455. --------V-2FAC07DI1092-----------------------
  9456. INT 2F - QRIP/TSR - GET FONT DIRECTORY
  9457.     AX = AC07h
  9458.     DI = 1092h
  9459. Return: DX:BX -> 80-byte internal buffer containing ASCIZ font directory name
  9460. Notes:    if DI <> 1092h on entry, QRIP chains the call
  9461.     the application may change the font directory by overwriting the
  9462.       returned buffer, ensuring that it does not exceed 80 bytes incl. NUL
  9463.     if changed, the new path will not become effective until the graphics
  9464.       screen is reinitialized
  9465. SeeAlso: AX=AC08h,AX=ACF0h
  9466. --------V-2FAC08DI1092-----------------------
  9467. INT 2F - QRIP/TSR - GET ICON DIRECTORY
  9468.     AX = AC08h
  9469.     DI = 1092h
  9470. Return: DX:BX -> 80-byte internal buffer containing ASCIZ icon directory name
  9471. Notes:    if DI <> 1092h on entry, QRIP chains the call
  9472.     the application may change the icon directory by overwriting the
  9473.       returned buffer, ensuring that it does not exceed 80 bytes incl. NUL,
  9474.       and includes a trailing backslash
  9475.     if changed, the new path becomes effective immediately
  9476. SeeAlso: AX=AC07h,AX=ACF0h
  9477. --------V-2FAC09DI1092-----------------------
  9478. INT 2F - QRIP/TSR - OUTPUT STRING THROUGH QRIP
  9479.     AX = AC09h
  9480.     DI = 1092h
  9481.     DX:BX -> string
  9482.     CX = length of string
  9483. Return: AX = character to send to BBS (0001h-00FFh) or special code (see #02967)
  9484.     BX = string-waiting flag
  9485.         0001h entire string waiting to be sent to terminal (call AX=AC0Ch)
  9486.     CX = DX = AX
  9487. Note:    if DI <> 1092h on entry, QRIP chains the call
  9488. SeeAlso: AX=AC04h,AX=AC06h,AX=AC0Ah,AX=ACF0h
  9489. --------V-2FAC0ADI1092-----------------------
  9490. INT 2F - QRIP/TSR - OUTPUT NULL-TERMINATED STRING THROUGH QRIP
  9491.     AX = AC0Ah
  9492.     DI = 1092h
  9493.     DX:BX -> ASCIZ string
  9494. Return: AX = character to send to BBS (0001h-00FFh) or special code (see #02967)
  9495.     BX = string-waiting flag
  9496.         0001h entire string waiting to be sent to terminal (call AX=AC0Ch)
  9497.     CX = DX = AX
  9498. Note:    if DI <> 1092h on entry, QRIP chains the call
  9499. SeeAlso: AX=AC05h,AX=AC06h,AX=AC09h,AX=ACF0h
  9500. --------V-2FAC0BDI1092-----------------------
  9501. INT 2F - QRIP/TSR - EXECUTE RIP "END SCENE" COMMAND
  9502.     AX = AC0Bh
  9503.     DI = 1092h
  9504. Return: nothing
  9505. Notes:    if DI <> 1092h on entry, QRIP chains the call
  9506.     enables all mouse buttons and cancels the RIP timeout
  9507. SeeAlso: AX=AC01h,AX=AC04h,AX=ACF0h
  9508. --------V-2FAC0CDI1092-----------------------
  9509. INT 2F - QRIP/TSR - GET STRING TO BE SENT TO BBS
  9510.     AX = AC0Ch
  9511.     DI = 1092h
  9512. Return: AX = status
  9513.         0000h nothing to be sent
  9514.         0001h a string is waiting to be sent
  9515.         DX:BX -> string to be sent (may contain NULs)
  9516.         CX = length of string
  9517.         0002h special code waiting (call AX=AC06h)
  9518. Note:    if DI <> 1092h on entry, QRIP chains the call
  9519. SeeAlso: AX=AC06h,AX=ACF0h
  9520. --------V-2FAC0DDI1092-----------------------
  9521. INT 2F - QRIP/TSR - SET PROTECTED SCREEN AREA
  9522.     AX = AC0Dh
  9523.     DI = 1092h
  9524.     CL = number of text lines at bottom of screen to protect (00h = off)
  9525.     BL = attribute with which to fill area (bit 7 = high-int. background)
  9526. Return: nothing
  9527. Note:    if DI <> 1092h on entry, QRIP chains the call
  9528. SeeAlso: AX=AC0Eh,AX=AC0Fh,AX=AC10h,AX=ACF0h
  9529. --------V-2FAC0EDI1092-----------------------
  9530. INT 2F - QRIP/TSR - WRITE ASCIZ STRING IN PROTECTED AREA
  9531.     AX = AC0Eh
  9532.     DI = 1092h
  9533.     DX:BX -> ASCIZ string to be written
  9534.     CL = column at which to begin writing
  9535.     CH = row number within protected area (00h = first line)
  9536. Return: nothing
  9537. Note:    if DI <> 1092h on entry, QRIP chains the call
  9538. SeeAlso: AX=AC0Dh,AX=AC0Fh,AX=AC10h,AX=ACF0h
  9539. --------V-2FAC0FDI1092-----------------------
  9540. INT 2F - QRIP/TSR - SCROLL PROTECTED AREA
  9541.     AX = AC0Fh
  9542.     DI = 1092h
  9543.     BH,BL = row,column of upper-left corner in protected area
  9544.     DH,DL = row,column of lower-right corner
  9545.     CL = number of lines to scroll up
  9546. Return: nothing
  9547. Note:    if DI <> 1092h on entry, QRIP chains the call
  9548. SeeAlso: AX=AC0Dh,AX=AC0Eh,AX=AC10h,AX=ACF0h
  9549. --------V-2FAC10DI1092-----------------------
  9550. INT 2F - QRIP/TSR - SET OUTPUT COLOR FOR PROTECTED AREA
  9551.     AX = AC10h
  9552.     DI = 1092h
  9553.     BL = new attribute (bit 7 set for high-intensity background)
  9554. Return: nothing
  9555. Note:    if DI <> 1092h on entry, QRIP chains the call
  9556. SeeAlso: AX=AC0Dh,AX=AC0Eh,AX=AC0Fh,AX=AC11h,AX=ACF0h
  9557. --------V-2FAC11DI1092-----------------------
  9558. INT 2F - QRIP/TSR - CONVERT PROTECTED AREA TO ENTIRE SCREEN
  9559.     AX = AC11h
  9560.     DI = 1092h
  9561.     BX = mode (0000h = normal protect, 0001h = allow full-screen access)
  9562. Note:    if DI <> 1092h on entry, QRIP chains the call
  9563. SeeAlso: AX=AC0Dh,AX=AC0Eh,AX=AC0Fh,AX=AC10h,AX=AC12h,AX=ACF0h
  9564. --------V-2FAC12DI1092-----------------------
  9565. INT 2F - QRIP/TSR - BEGIN POPUP-WINDOW MODE
  9566.     AX = AC12h
  9567.     DI = 1092h
  9568. Return: nothing
  9569. Notes:    if DI <> 1092h on entry, QRIP chains the call
  9570.     while popup-mode is in effect, the terminal program can write to the
  9571.       screen (and easily restore it) by outputting a RIP file with AX=AC04h
  9572.       or AX=AC05h
  9573.     QRIP will automatically drop out of popup-window mode if the terminal
  9574.       program invokes RIP pick-lists
  9575.     any changes to the protected area will be restored when popup-window
  9576.       mode is cancelled
  9577. SeeAlso: AX=AC04h,AX=AC11h,AX=AC13h,AX=ACF0h
  9578. --------V-2FAC13DI1092-----------------------
  9579. INT 2F - QRIP/TSR - END POPUP-WINDOW MODE
  9580.     AX = AC13h
  9581.     DI = 1092h
  9582. Return: nothing
  9583. Notes:    if DI <> 1092h on entry, QRIP chains the call
  9584.     restores screen
  9585. SeeAlso: AX=AC12h,AX=ACF0h
  9586. --------V-2FAC14DI1092-----------------------
  9587. INT 2F - QRIP/TSR - SAVE GRAPHICS SCREEN AND SWITCH TO TEXT MODE
  9588.     AX = AC14h
  9589.     DI = 1092h
  9590. Return: nothing
  9591. Note:    if DI <> 1092h on entry, QRIP chains the call
  9592. SeeAlso: AX=AC03h,AX=AC15h
  9593. --------V-2FAC15DI1092-----------------------
  9594. INT 2F - QRIP/TSR - RESTORE GRAPHICS SCREEN
  9595.     AX = AC15h
  9596.     DI = 1092h
  9597. Return: nothing
  9598. Desc:    restores the graphics screen saved by the last call to AX=AC14h
  9599. Note:    if DI <> 1092h on entry, QRIP chains the call
  9600. SeeAlso: AX=AC03h,AX=AC14h
  9601. --------V-2FAC16DI1092-----------------------
  9602. INT 2F - QRIP/TSR - REPORT MODE CHANGE TO QRIP
  9603.     AX = AC16h
  9604.     DI = 1092h
  9605.     BL = new mode
  9606.         00h terminate key wait
  9607.         01h status bar on
  9608.         02h status bar off
  9609.         03h VT-102 mode on
  9610.         04h VT-102 mode off
  9611.         05h doorway mode on
  9612.         06h doorway mode off
  9613.         07h hotkeys mode on
  9614.         08h hotkeys mode off
  9615.         09h tabkey mode on
  9616.         0Ah tabkey mode off
  9617. Return: nothing
  9618. Notes:    if DI <> 1092h on entry, QRIP chains the call
  9619.     all modes default to OFF when QRIP is first installed
  9620. --------V-2FAC17DI1092-----------------------
  9621. INT 2F - QRIP/TSR - CALL (EXECUTE) A RIP FILE
  9622.     AX = AC17h
  9623.     DI = 1092h
  9624.     DX:BX -> ASCIZ filename for RIP file to be executed
  9625. Return: nothing
  9626. Notes:    if DI <> 1092h on entry, QRIP chains the call
  9627.     the specified file may be in the current icon directory, the QRIP
  9628.       startup directory, or the current directory; any pathnames specified
  9629.       with the filename are ignored
  9630. --------V-2FAC18DI1092-----------------------
  9631. INT 2F - QRIP/TSR - SEND USER KEY TO QRIP
  9632.     AX = AC18h
  9633.     DI = 1092h
  9634.     BX = key (00xxh is normal ASCII, xx00h is an extended key)
  9635. Return: nothing
  9636. Note:    if DI <> 1092h on entry, QRIP chains the call
  9637. SeeAlso: AX=AC06h,AX=ACF0h
  9638. --------V-2FAC19DI1092-----------------------
  9639. INT 2F - QRIP/TSR - HANGUP
  9640.     AX = AC19h
  9641.     DI = 1092h
  9642. Return: nothing
  9643. Desc:    inform QRIP that carrier has been lost
  9644. Note:    if DI <> 1092h on entry, QRIP chains the call
  9645. SeeAlso: AX=ACF0h
  9646. --------V-2FAC1ADI1092-----------------------
  9647. INT 2F - QRIP/TSR - GET RIP_ENTER_BLOCK_MODE INFORMATION
  9648.     AX = AC1Ah
  9649.     DI = 1092h
  9650. Return: AH = requested protocol (see #02968)
  9651.     AL = file type (see #02969)
  9652.     DX:BX -> ASCIZ filename or 0000h:0000h
  9653.     CX = length of filename
  9654. Note:    if DI <> 1092h on entry, QRIP chains the call
  9655. SeeAlso: AX=ACF0h
  9656.  
  9657. (Table 02968)
  9658. Values for QRIP protocol identifier:
  9659.  00h    Xmodem (checksum)
  9660.  01h    Xmodem-CRC
  9661.  02h    Xmodem-1K
  9662.  03h    Xmodem-1K-G
  9663.  04h    Kermit
  9664.  05h    Ymodem
  9665.  06h    Ymodem-G
  9666.  07h    Zmodem with crash recovery
  9667.  08h-0Fh same as 00h-07h, but for uploading instead of downloading
  9668. SeeAlso: #02969
  9669.  
  9670. (Table 02969)
  9671. Values for QRIP file type:
  9672.  00h    RIP file sequence to be displayed
  9673.  01h    RIP file sequence to be stored in icon directory
  9674.  02h    ICN file sequence to be stored in icon directory
  9675.  03h    HLP file sequence to be stored, then auto-loaded if needed
  9676.  04h    COMPOSITE DYNAMIC file sequence (batch protocols only)
  9677.  05h    ACTIVE DYNAMIC file sequence (batch protocols only)
  9678. Note:    for file types 04h and 05h, any .RIP or .ICN files are stored in
  9679.       the icon directory; in mode 05h, any .RIP files are also played
  9680.       back as they are received
  9681. SeeAlso: #02968
  9682. --------V-2FAC1BDI1092-----------------------
  9683. INT 2F - QRIP/TSR - SET SYSTEM FONT SIZE
  9684.     AX = AC1Bh
  9685.     DI = 1092h
  9686.     BX = font size (see #02970)
  9687. Return: nothing
  9688. Note:    if DI <> 1092h on entry, QRIP chains the call
  9689. SeeAlso: AX=AC04h,AX=ACF0h
  9690.  
  9691. (Table 02970)
  9692. Values for QRIP font size specifier:
  9693.  00h    8x8 font, 80x43 screen
  9694.  01h    7x8 font, 90x43 screen
  9695.  02h    8x14 font, 80x25 screen
  9696.  03h    7x14 font, 90x25 screen
  9697.  04h    16x14 font, 40x25 screen
  9698. --------V-2FACF0DI1092-----------------------
  9699. INT 2F - QRIP/TSR - INSTALLATION CHECK
  9700.     AX = ACF0h
  9701.     DI = 1092h
  9702. Return: AX = 9142h if installed
  9703.         DX = DOS-takeover flag (nonzero if QRIP able to take over DOS)
  9704.         ---if DX nonzero---
  9705.         BX = QRIP version number in hex (BH = major, BL = minor)
  9706.         CX = current flags (see AX=AC01h)
  9707. Note:    if DI <> 1092h on entry, QRIP chains the call
  9708. SeeAlso: AX=AC00h/DI=1092h,AX=AC01h,AX=AC04h,AX=AC06h,AX=AC1Ah,AX=ACFFh
  9709. --------V-2FACFFDI1092-----------------------
  9710. INT 2F - QRIP/TSR - UNINSTALL
  9711.     AX = ACFFh
  9712.     DI = 1092h
  9713. Return: AX = status
  9714.         0000h unable to remove (interrupt vector hooked by another prog)
  9715.         0001h successful
  9716.         0002h unable to take over DOS at this time (retry uninstall)
  9717. Note:    if DI <> 1092h on entry, QRIP chains the call
  9718. SeeAlso: AX=ACF0h
  9719. --------!---Section--------------------------
  9720.